This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

ARM Compilation Error

Hello,

I have Atmel Evalution SAM3N ACC kit.I'm trying to run some sample application when compiled the application i having error

Rebuild target 'sram'
compiling main.c...
assembling workaround.s...
compiling spim_master_wrapper.c...
linking...
..\..\..\..\libraries\libboard_sam3n-ek\resources\mdk\sam3n4\sram.sct(38): error: L6236E: No section matches selector - no section to be FIRST/LAST.
".\sram\sram.axf" - 1 Error(s), 0 Warning(s).


Contain of sram.act file

Load_region 0x20000000 0x6000
{
    ; Code Initialization
    Vector_region 0x20000000 +0
    {
        board_cstartup_keil.o (vectors, +FIRST)
    }

    ;Code
    Code_region +0
    {
        .ANY (+RO, +RW, +ZI)
    }

    ; Configure Stack and Heap
    ARM_LIB_HEAP 0x20005000 EMPTY 0x800
    {
    }

    ARM_LIB_STACK 0x20006000 EMPTY -0x800
    {
    }
}

0