gpio_set_dir_masked64() function
Set multiple GPIO directions For each 1 bit in "mask", switch that pin to the direction given by corresponding bit in "value", leaving other pins unchanged. E.g. gpio_set_dir_masked(0x3, 0x2); -> set pin 0 to input, pin 1 to output, simultaneously.
Syntax
static inline void gpio_set_dir_masked64(uint64_t mask,
uint64_t value);
Arguments
mask
Bitmask of GPIO to set to input, as bits 0-29