Part Number: TMS320F2808
Tool/software: Code Composer Studio
#10247-D null: creating output section "ADC5CH_CONT_DRV_Data" without a SECTIONS specification PSFB C/C++ Problem
why is this error.
How can we fix.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: TMS320F2808
Tool/software: Code Composer Studio
#10247-D null: creating output section "ADC5CH_CONT_DRV_Data" without a SECTIONS specification PSFB C/C++ Problem
why is this error.
How can we fix.
I can give you some background on what has gone wrong. I am unable to tell you how to fix it.
Please read the first part of the article Linker Command File Primer. Focus on understanding the terms input section and output section. Whenever the linker sees an input section for which there is no matching output section, it emits a diagnostic similar to ...
Ahmet Budak said:creating output section "ADC5CH_CONT_DRV_Data" without a SECTIONS specification
In your case, some object file has an input section named ADC5CH_CONT_DRV_Data. But the linker command file has no output section with that name (or any other means of collecting this input section). So, an output section with the same name is created. The worst part ... this new output section is allocated into the first memory range which has space for it, and this is almost certainly wrong.
Are you using some kind of Software Development Kit (SDK)? If so, which one? An expert on that SDK can likely give direct advice on how to address the problem.
Thanks and regards,
-George