I need to call gpio_get_value
, gpio_set_value
, gpio_direction_input/output
in my driver, and there is a timing requirement that requests the function calls to be returned in less than 5us
time.
Can gpiolib
meet this requirement or is it not deterministic? If not, what could be the solution? directly accessing GPIO registers?
Thanks a lot.