How can I move an array with pointers to functions into flash? In normal RAM, the code looks something like:
MCU = ATMega628P, AVR-GCC 4.3.3 (WinAVR 20100110)
typedef void (*func_ptr_t)(void);
const func_ptr_t cli_func_list[] = {
&funcA,
&funcB
};
...
(*cli_func_list[j])(); // execute
...
I did try something like
const func_ptr_t cli_func_list[] PROGMEM = {
&cmd_OT,
&cmd_TT
};
but have no clue how to make this work. Any suggestions?
You got is almost right, but you have to use
pgm_read_xxx
fromavr/pgmspace.h
to read from flash. This applies to C++ and to avr-gcc older than v4.7:With avr-gcc v4.7+, you can use the
__flash
qualifier, are type-save and no need foravr/pgmspace.h
: