[quote user="Jordda"]warning: creating output section "csm_rsvd" without a SECTIONS specification
warning: creating output section "csmpasswds" without a SECTIONS specification[/quote]
This is saying those sections are being created, and allocated to some address in memory, without any explicit specification. It is likely these sections are not being placed where you want them.
[quote user="Jordda"]"C:/ti/controlSUITE/device_support/f2802x/v210/f2802x_examples/gpio_toggle/../../F2802x_common/cmd/F2802x_generic_ram.cmd", line 111: error:
program will not fit into available memory. placement with
alignment/blocking fails for section ".text" size 0x632 page 0.[/quote]
Please see this wiki article.
[quote user="Jordda"]warning: entry-point symbol other than "_c_int00" specified: "code_start"[/quote]
You are probably linking with the option --rom_model. Among other things, this option expects the entry point of the program to be indicated by the symbol _c_int00. That symbol is usually defined by the boot routine in the RTS library supplied with the compiler. You must be using the linker option --entry_point=code_start.
Thanks and regards,
-George