• struct pointer
    struct A { . . . }; struct B { struct A xdata *structA; . . . }; void test(struct B xdata *structB) { struct A xdata *structA = structB->structA; } structA is a pointer to xdata...
  • Overlay/function pointers
    Hi, In our project we are using function pointers. After compiling the project, we got "RECURSIVE CALL TO SEGMENT" warning. By selecting OVERLAY (sfname ! *)in BL51, that warnings was removed. If we...
  • struct and pointer
    hi, i need a solution on how to read a struct which includes serveral types of vars with a pointer of type char. example: struct test { char a; int b; int c; char d; }; struct test s_test;...
  • OVERLAY
    Hi, I have two threads interrupt and main thread. currently, i'm using NOOVERLAY. In order to save space in the RAM, i want to overlay data between functions, BUT I want that the interrupt will...
  • overlay
    Hello, we are working on a C51 project using code banking with 2 code banks(105k code) This is the map file generated for my compiled project... TYPE BASE LENGTH RELOCATION SEGMENT NAME...