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.

CCS/66AK2H14: warning #10247-D, how to get rid of?

Tool/software: Code Composer Studio

Hello, when I compile my simple, Baremetal, SPI example code I receive the following warning:

warning #10247-D: creating output section ".csl_vect" without a SECTIONS specification

How can get rid of this warning?

3443.workspace_v9.zip

  • joe306 said:
    warning #10247-D: creating output section ".csl_vect" without a SECTIONS specification

    How can get rid of this warning?

    To resolve the warning the 66AK2Gxx_C66.cmd linker command file used by the project needs to modified to explicitly place the ".csl_vect" section in a memory region. Since all other sections are placed in the L2_SRAM_0 region, suggest add the following to the SECTIONS:

        .csl_vect  >  L2_SRAM_0

  • Chester,

    Hello, thank you for solving my problem.

    Would I put that under the /* COFF  sections */  or under the /* EABI sections */

    Thanks,

    Joe

  • joe306 said:
    Would I put that under the /* COFF  sections */  or under the /* EABI sections */

    It doesn't matter, since they are only comments.

    The ".csl_vect" section is actually defined in the PDK packages/ti/csl/src/intc/_csl_intcIsrDispatch.asm source file which is independent of the COFF or EABI output format, so placing ".csl_vect" with the section prior to the /* COFF sections */ comment make more logical sense.