There are parallel 8 bits input to nrf52832 GPIO pins,I want to read the data from the pins and writ it to a RAM.how to do read the data in one CPU clock?
There are parallel 8 bits input to nrf52832 GPIO pins,I want to read the data from the pins and writ it to a RAM.how to do read the data in one CPU clock?
This is the fastest way but not in 1 clock, not even if you write it in assembly.
uint32_t x = NRF_GPIO->IN;
This is the fastest way but not in 1 clock, not even if you write it in assembly.
uint32_t x = NRF_GPIO->IN;