const

Forcing const objects to be stored in program memory See XC32 user guide sections “10.9.1 Const Type Qualifier” and “11.4 Variables in Program Memory” for full details. Objects qualified only with const are not guaranteed to be located in program memory, some options can affect where const-qualified object are located. To explicitly request that a […]

Read More