Open rei-vilo opened 6 years ago
Latest release 8.1.0 of Code Composer Studio includes MSP430 GCC v7.3.1.24.
See New in CCS v8.1.0 at Release Notes for Code Composer Studio™ v8.1.0.
@StefanSch Does GCC 4.6.6 offer access to the whole memory beyond 48 KB?
The idea is to get access to the full size of the FRAM memory, up to 256 KB with the MSP430FR5994.
Unfortunately the currently used gcc compiler does not support the upper memory. To support this the change to a later compiler version would be required which is still pending. Most important point for not having switched to a newer compiler version is the increased code size the new compiler will bring and therefore limit functionality on some of the small memory devices.
See https://github.com/energia/msp430-lg-core/blob/new_compiler/extras/readme.txt for support of MSP-GCC 7.3.1.24 with large arrays in FRAM.
Tested successfully on macOS with minor adaptations.
Current GCC tool-chain for MSP430 is versioned
4.6.5
but is limited to 64 KB.I gave a try to GCC MSP430
6.4.0.32
with options-mlarge -mcode-region=upper -mhwmult=auto
.Surprise is, variable and code sizes are significantly bigger.
4.6.5
for blink against MSP430G25536.4.0.32
for blink against MSP430G2553This may rise issues for the MSP430G2553 but not for the MSP430F5529, MSP430FR5969, MSP430FR5994 and MSP430FR6989 with large Flash and RAM.
I haven't explored yet projects which size is larger than 64 KB.
Are there a roadmap and a release date for the support of GCC MSP430
6.4.0.32
with projects larger than 64 KB?Thank you!