• 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...
  • 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...
  • Array of pointers to structures
    I am getting an error 199 "left side of '->' requires a struct/union pointer. I'm not entirely sure why. Maybe it's obvious, but I've been looking at this code for too long: struct test_struct {...
  • Array of pointers to structures
    I am getting an error 199 "left side of '->' requires a struct/union pointer. I'm not entirely sure why. Maybe it's obvious, but I've been looking at this code for too long: struct test_struct {...
  • uVision Debugger displaying arrays of Structures
    I'm using uVision2 V2.40A. Please look the following example: struct structPeriod { int From; int To; int x[4]; }; struct structConfig { struct structPeriod Periods[5]; int x; int y; };...