LCD code

For Flowcode users to discuss projects, flowcharts, and any other issues related to Flowcode 2 and 3.

Moderators: Benj, Mods

Post Reply
echase
Posts: 429
Joined: Mon Jun 11, 2007 11:55 am
Has thanked: 49 times

LCD code

Post by echase »

Looking at various versions of my compiled code I see that the C for the LCD contain these lines:-

void FCD_LCDDisplay0_GetDefines()
{
} //Dummy end of function to allow defines to be added correctly
//component connections
#define LCD_4129482_PORT portb

In other versions the long number in middle is different such as:-

#define LCD_328348_PORT portb

#define LCD_1835698_PORT portb

What is the significance of this number? Why does it vary maybe every time I compile and do I need to worry about it changing?

User avatar
Benj
Matrix Staff
Posts: 15312
Joined: Mon Oct 16, 2006 10:48 am
Location: Matrix TS Ltd
Has thanked: 4803 times
Been thanked: 4314 times
Contact:

Re: LCD code

Post by Benj »

Hello

This is just a method we used here to allow multiple LCDs to be added to a program without causing problems. The number is random and you do not have to worry about it changing.

Post Reply