In the most version of the MSP432R board file (5.23.1 -> 5.25.0), the optimization levels were changed from -Os (optimize for space) to -O0 (no optimization). As a result, my code chokes on an error in CCSv9.1 which looks like this:
`.rodata' will not fit in region `FLASH'
c:/ti/ccs910/ccs/tools/compiler/gcc-arm-none-eabi-7-2017-q4-major-win32/bin/../lib/gcc/arm-none-eabi/7.2.1/../../../../arm-none-eabi/bin/ld.exe: region `FLASH' overflowed by 29204 bytes
I'm able to fix, by changing the optimization level in CCS via the attache pic, but I was wondering, is this a permanent cha