Hello,
could you please clarify one fact for me.
I am writing a memory sensitive program and need a complex but static constant array. Therefore I was considering this approach to save some space in memory pool.
If I declare something like:
#define a #define b #define c 2 #define NUMBER 666 code unsigned array[a][b][c] { {{<function pointer>, NUMBER}}, {}}
Will this be stored in the ROM?
Thanks! G.
code unsigned array[a][b][c] { {{<function pointer>, NUMBER}}, {}} Will this be stored in the ROM?
No, your chip has no ROM, but it will be stored in the flash
Erik