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

ERROR 65

Hi there,

Iam getting error 65 message --- cantest.c(30): error: #65: expected a ";"

when I add the following line of code


unsigned  int StandardFilter[2] _at_ 0xE0038000;

Kindly give me your suggestions.

Parents
  • Hi there, (This is a continuation from the previous posted thread).
    I have tried by increasing the Stack size in the startup.s file( to Stack_Size EQU 0x00003fff )
    which was initially set as follows:

    UND_Stack_Size  EQU     0x00000000
    SVC_Stack_Size  EQU     0x00000100
    ABT_Stack_Size  EQU     0x00000000
    FIQ_Stack_Size  EQU     0x00000000
    IRQ_Stack_Size  EQU     0x00000100
    USR_Stack_Size  EQU     0x00000200
    
    Stack_Size   EQU  (UND_Stack_Size + SVC_Stack_Size +  ABT_Stack_Size + /
    FIQ_Stack_Size + IRQ_Stack_Size + USR_Stack_Size)
    


    This time Iam seeing the following error :

    Build target 'MCB2300'
    compiling irq.c...
    compiling target.c...
    compiling can.c...
    compiling cantest.c...
    assembling Startup.s...
    linking...
    .\Obj\can_release.axf: error: L6047U: The code in this image is 3184 bytes - this version of the linker will not create images that large
    Target not created

    Iam using the latest evaluation version Keil uVision3
    s/w (MDK3.11) which allows compilation of coding upto 16k.
    Kindly give your suggestions.

Reply
  • Hi there, (This is a continuation from the previous posted thread).
    I have tried by increasing the Stack size in the startup.s file( to Stack_Size EQU 0x00003fff )
    which was initially set as follows:

    UND_Stack_Size  EQU     0x00000000
    SVC_Stack_Size  EQU     0x00000100
    ABT_Stack_Size  EQU     0x00000000
    FIQ_Stack_Size  EQU     0x00000000
    IRQ_Stack_Size  EQU     0x00000100
    USR_Stack_Size  EQU     0x00000200
    
    Stack_Size   EQU  (UND_Stack_Size + SVC_Stack_Size +  ABT_Stack_Size + /
    FIQ_Stack_Size + IRQ_Stack_Size + USR_Stack_Size)
    


    This time Iam seeing the following error :

    Build target 'MCB2300'
    compiling irq.c...
    compiling target.c...
    compiling can.c...
    compiling cantest.c...
    assembling Startup.s...
    linking...
    .\Obj\can_release.axf: error: L6047U: The code in this image is 3184 bytes - this version of the linker will not create images that large
    Target not created

    Iam using the latest evaluation version Keil uVision3
    s/w (MDK3.11) which allows compilation of coding upto 16k.
    Kindly give your suggestions.

Children