From code_red to gcc-arm-embedded

Asked by garfunx

I'd like to remplace the code_red toolchain from LPCXpresso used by my project with the gcc arm embedded. However I'm facing some troubles. Code-red provides:

- crp.h which deals with code protection.
- cr_sections_macros.h which provides macros for placing code, data or bss
- cr_startup_lpcxx.c which provides in particular a vector table

Does gcc-arm-none-eabi toolchain provides a such files?

Question information

Language:
English Edit question
Status:
Solved
For:
GNU Arm Embedded Toolchain Edit question
Assignee:
No assignee Edit question
Solved by:
chengbin
Solved:
Last query:
Last reply:
Revision history for this message
Best chengbin (can-finner) said :
#1

No, gcc arm embedded is a pure gnu toolchain and doesn't provide IDE/board specific files, you have to do some porting works when switching from dedicated toolchain like code-red.
However you can refer to sample projects in the release package for more information.

Hoping this can help.

Revision history for this message
garfunx (vdonnefort) said :
#2

Thanks chengbin, that solved my question.