I need to define a few constant arrays for IR implementation. Currently, I define them as static uint16_t but it takes up a lot of SRAM space. How do I move them to program space (flash)?
define them as
static const uint16_t xxx[] = { .. };