• bad structure declaration?
    i'm trying to create an array of structures but when i make more than a handful my robot doesn't work. so in main.h i have typedef struct SPid { int dState; // Last position input int iState;...
  • How to declare a structure?
    I define an area of memory that in 'non-volatile' so it doesn't get cleared on powerup. I do this is a module called memmap.asm like this: MyData DS 512 ;Located at 0x801C In another module, I want...
  • symbol declaration, for an C structure element
    If we define struct _footype { char c; int x; } foo; foo would be a linkable symbol, being th aderess of real memory - of sizeof(struct _footype) What can I do to declare a linkable symbol...
  • External Array of Structure
    Dear All, I am using LPC2138 with LCD display and key pad, program down loader via URAT. I have program and big chunk of messages stored in Array of Structure. Till now, I manage to compile whole thing...
  • Initialisation of structures in external memory
    I have a set of initialised data structures that are now located in external memory. The structures are each defined using __attribute__((section("menu_structures"))). A linker scatter file is used...