Part Number: AM2431
Tool/software:
I looked through the TRM and understand GPIO can be controlled with registers at baseAddr = 0x00600000 (GPIO0)
After GPIO are configured for input/output/PU/PD/etc...you can write GPIO_SET_DATAyy register to define which bits are H/L in a bank.
With the above register write, it is possible to set multiple GPIO pins H/L in a single instruction.
Apologize for not digging through the header files yet,
but I was just wondering if the GPIO API also supported setting multiple GPIO with a single API function call? For example...
GPIO_pinWriteHigh(baseAddr, 0b0011);
Is something like this possible, or does the register write need to be used?


