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 CCS Technical Support

how to simulate rs232 in proteus.

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



Joined: 17 Dec 2009
Posts: 1

View user's profile Send private message

how to simulate rs232 in proteus.
PostPosted: Thu Jan 14, 2010 9:41 pm     Reply with quote

Guys!!! Need help. How can I simulate rs232 connected to pic 16f877 using Proteus 7.5 ? How can I send character and see its output ? Thanks.
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Fri Jan 15, 2010 4:45 pm     Reply with quote

This is not a Proteus forum. It's the CCS compiler forum.
Do you have the CCS compiler ?

To find Proteus schematics for CCS projects, go to Google Images:
http://images.google.com
Search for this:
Quote:
proteus RS232 CCS

or just this:
Quote:
proteus RS232

You will see several schematics.

Here is a simple test program for the PIC's serial port.
It sends "Start:" to the serial terminal. Then it reads
characters that are typed into the terminal, and sends
them back to the terminal.
Code:

#include <16F877.H>
#fuses XT, NOWDT, BROWNOUT, PUT, NOLVP
#use delay(clock=4000000)
#use rs232(baud=9600, xmit=PIN_C6, rcv=PIN_C7, ERRORS)

//====================================
void main()
{
char c;

printf("Start: ");

while(1)
  {
   c = getc();
   putc(c);
  }

}
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