CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

get_string not working

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
nicotec



Joined: 07 Nov 2008
Posts: 60

View user's profile Send private message

get_string not working
PostPosted: Tue Feb 10, 2009 2:30 pm     Reply with quote

Hi, as in subject get_string function available in driver ccs folder not working since an error during compiling time occured on getc putc with comment unidentifier..
There is a new version of driver library?
Thanks in advance
Regards
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Tue Feb 10, 2009 2:33 pm     Reply with quote

You must have a #use rs232() statement. Get_string() calls functions
in that library code.
nicotec



Joined: 07 Nov 2008
Posts: 60

View user's profile Send private message

PostPosted: Wed Feb 11, 2009 7:38 am     Reply with quote

Yes, I have
Code:
#use rs232(UART1,baud=2400,parity=N,bits=8,stop=1)

but I do know why I have error from compiler for getc
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Wed Feb 11, 2009 11:04 am     Reply with quote

Post a very short test program that has an #include, #fuses, #use delay,
#use rs232, a main(). Use this code for your main:
Code:

void main()
{
char c;

c = getc();

while(1);
}

Compile it. See if you get the error message. If so, post the program.
Also post your compiler version.
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
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


Powered by phpBB © 2001, 2005 phpBB Group