Newbie stupid question - help with compiler errors
Posted: Mon Aug 13, 2012 6:51 am
I am just now getting back in to programming after 20 years and I was starting a practice project. I went through the new project wizard and that went fine but when I try to compile with no changes to the generated files I get a bunch of errors like First declaration of LCD_PIN_MAP and identifier is already used in this scope. I have looked at it for 2 days and since its generated by the program I'm not sure where to look. Thanks
Code:
typedef struct
{ // This structure is overlayed
BOOLEAN enable; // on to an I/O port to gain
BOOLEAN rs; // access to the LCD pins.
BOOLEAN rw; // The bits are allocated from
BOOLEAN unused; // low order up. ENABLE will
int data : 4; // be LSB pin of that port.
#if defined(__PCD__) // The port used will be LCD_DATA_PORT.
int reserved: 8;
#endif
} LCD_PIN_MAP;
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
Posted: Mon Aug 13, 2012 12:36 pm
Quote:
I get a bunch of errors like First declaration of LCD_PIN_MAP and
identifier is already used in this scope.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum