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

Declare variable in the same location as that of a struct member

Hi All,
Am trying to re-write a code in PLM51 to embedded C.
There is a statement in PLM51 as below.

DECLARE TASK(17) STRUCTURE(PNTR BYTE,STATUS BYTE,DELAY WORD);
DECLARE DELAY_HEAD BYTE AT (.TASK(0).PNTR); //ERROR LINE//

What i have understood from this is-- DELAY_HEAD is a byte variable which resides at the same location as that of TASK(0).PNTR.(From the PLM51 manual)

I have rewritten the same into C as below.

struct tsk
{ unsigned char PNTR ; unsigned char STATUS; unsigned int DELAY;
}TASK[17];
unsigned char DELAY_HEAD _at_ &TASK[0].PNTR ;

But its giving error 221:non-constant case/dim expression.
Plss help..!!

  • Indeed - quite so!

    "and checking the datasheet to see if a specific chip have any optional extras"

    Of course.

  • Hey,
    Thankyou for all the help so far.
    I have compiled my code and now...
    Its showing...

    compiling ****.c
    linking...
    
    ****.obj
    To ****
    RAMSIZE(256)
    CODE (?CO?CONTROL1(0x7FFE))
    WARNING L16
    WARNING L16
    ERROR L110
    RESTRICTED VERSION WITH 0800H BYTE CODE SIZE LIMIT;USED:3014H BYTE
    
    LINK/LOCATE RUN COMPLETE.2WARNINGS,1ERROR(S)
    

    Then there is one more fatal error shown in the end.

    
    FATAL ERROR L250:CODE SIZE IN RESTRICTED VERSION EXCEEDED
    
    

    I am using the student version of KEIL.So are these errors and warnings due the size limit issue?or some other problem???Because i cannot convert this code to a HEX file this way.

    Thanks.

  • RESTRICTED VERSION WITH 0800H BYTE CODE SIZE LIMIT; USED:3014H BYTE
    

    It tells you that you have a 0800H-byte limit, and have used 3014H bytes - in what way is that not clear?

    FATAL ERROR L250:CODE SIZE IN RESTRICTED VERSION EXCEEDED
    

    Again, it tells you that you have a restricted version, and you have exceeded the limit.

  • Hey,
    Now i have tried the code with the full version and hence the problem is solved.
    But the 2 warnings and 1 error still remains.

    Warning L16
    
    Uncalled Segment, Ignored for Overlay Process
    ?CO?CONTROL1
    
    Error L110
    
    Cannot Find Segment
    ?CO?CONTROL1
    
    

    What is the reason for such an error..??Pls guide me.

    Thanks

  • Uncalled Segment, Ignored for Overlay Process
    


    Isn't that obvious?

    Have you checked in your source code - do you think that it should be called from somewhere?

    The C51 manual explains the segment naming conventions - so you can relate the segment name reported by the linker to your source code...

  • Hey,

    I have to initialise a variable called CONTROL1 in code memory and locate the same in fixed address 0x7FFE.I have gone through many forums and the Keil user's guide.I have written as below.

    unsigned int code CONTROL1 = 0xFFFF;
    

    Then,To use the linker BL51,
    I have done it as below.

     Options->(Am using BL51)BL51 locate->Code ?CO?CONTROL1(07FFEh)
    

    Still the error is L110:Cannot find segment.
    Apart from the warning mentioned above.
    The functions mentioned in the warning are called in the program.I have gone through the source code.
    Pls help
    Thanks.

  • But is any part of the program accessing the variable CONTROL1?

  • Hi,
    I also want mention that i am using 80552 microcontroller.I want to know if the linker to be used is specific to different microcontrollers.Is it correct to use BL51 for 80552??
    Thanks.

  • Hey,
    CONTROL1 is a variable used in one of the functions which would be called in the main loop in the initialisation stage.It is used in the Checksum function.The microcontroller used here is 80552 which is a ROMless version and hence using external EEPROM.
    Thanks.

  • "CONTROL1 is a variable used in one of the functions which would be called in the main loop"

    Why do you say, "would be" there?

    Is it called, or isn't it??

  • Hey,
    Yes,The function(Named as test_hardw) is called in the main loop..!But CONTROL1 is a local variable inside the function,test_hardw.I dont know if that makes a difference.
    CONTROL1 takes the value 0xFFFF and has to be located in code memory location 0x7FFE.

    Thanks

  • Still the error is L110:Cannot find segment.

    And you still haven't checked the obvious: do you have a segment by that name? Look into your map file (perhaps after temporarily removing that special linker directive).

    If you do have such a segment: is that the one your variable is actually in?

  • Hi,
    As you have said,i have removed that linker directive and checked in the MAP file.Its given as here.

    
    SYMBOL TABLE OF MODULE:  mp15 (PMOB)
    VALUE       REP       CLASS    TYPE      SYMBOL NAME
    .....
    LX51 LINKER/LOCATER V3.64
    .....
    
    010030EBH   SYMBOL    CONST    BYTE      MEM_VAL
    00000010H   SYMBOL    IDATA    ---       MEM_PTR
    00000013H   SYMBOL    IDATA    WORD      CHECK
    010030E9H   SYMBOL    CONST    WORD      CONTROL1
    
    
    
    
    BASE START END USED MEMORY CLASS ========================================================== C:000000H C:000000H C:00FFFFH 002F1DH CODE X:000000H X:000000H X:00FFFFH 0001C8H XDATA I:000020H.0 I:000020H.0 I:00002FH.7 000002H.2 BIT C:000000H C:000000H C:00FFFFH 0001BEH CONST I:000000H I:000000H I:0000FFH 00006CH IDATA I:000000H I:000000H I:00007FH 000018H DATA


    In the above table its given CODE memory class range as 0000-FFFF.But my EPROM size is 0000-7FFF.I have given that in the OPTIONS->TARGET->Off-chip CODE Memory as 0x0000,0x8000.Pls check this.

    tHANKS

  • Hey,
    How do i know which linker to use??BL51 or LX51.I am using 80552 microcontroller.

    Thanks

  • So now you have some data, you can start answering the questions I asked. Let's start with: does that segment whose address you were trying to change actually exist in your program?

    Pls check this.

    It's your program. Check it yourself.

    But here's a hint: what might that tickbox "Use Memory Layout from Target Dialog" on the Options->LX51 tab be about?