View previous topic :: View next topic |
Author |
Message |
W_Schauberg
Joined: 17 Sep 2009 Posts: 16
|
PCD:dynamic data change |
Posted: Tue Nov 10, 2009 3:36 am |
|
|
Hello,
I'm passing some data from external source to my pic24 Terminal.
The external source and Terminal are connected with serial connection.
I can send and receive data but now I have to change the variables according to new incoming data. This part should be used for dynamic LCD representation.
Each time when I "download" some data from external device I want to be able to dynamically change the value in the terminal.
char UserName = new incoming userName value
char Date= new incoming date value.
How to make this ? |
|
 |
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
Posted: Tue Nov 10, 2009 3:26 pm |
|
|
Look in this CCS file for serial input routines for text and numbers:
Quote: | c:\program files\picc\drivers\input.c |
Then do a search on the CCS example files directory for "input.c"
to see examples of how to use those routines. There are about 25 files
that #include input.c. Example:
Quote: | c:\program files\picc\examples\ex_tank.c |
|
|
 |
|