11.6 Read-only Data
Read-only data sections are located in program memory, but are defined and accessed just like data memory. They are useful for storing constant tables that are too large for available data memory. The C compiler creates a read-only section named .const
when the -mconst-in-code
option is specified.