gpio_put_masked_n() function
Drive GPIOs high/low depending on parameters For each 1 bit in \p mask, drive that pin to the value given by corresponding bit in \p value, leaving other pins unchanged. Since this uses the TOGL alias, it is concurrency-safe with e.g. an IRQ bashing different pins from the same core.
Syntax
static inline void gpio_put_masked_n(uint n,
uint32_t mask,
uint32_t value);
Arguments
n
the base GPIO index of the mask to update. n == 0 means 0->31, n == 1 mean 32->63 etc.
mask
Bitmask of GPIO values to change