2022-07-11 04:28 AM
I implement the eeprom emulation library for the STM32F423 controller and was wondering if the variables are 16 bits can I use the virtual addresses like this:
uint16_t VirtAddVarTab[NB_OF_VAR] = {0x1, 0x2, 0x3};
Or do I need to keep space like 0x1, 0x3, 0x5 because the variables are 2 bytes wide?
Solved! Go to Solution.
2022-07-11 09:33 AM
You can leave 1 2 3 ... or FFFA FFFB FFFC ....
2022-07-11 09:33 AM
You can leave 1 2 3 ... or FFFA FFFB FFFC ....