Author |
Message |
Topic: serial baud rate |
midoroi
Replies: 10
Views: 10382
|
Forum: General CCS C Discussion Posted: Fri May 10, 2013 8:28 pm Subject: serial baud rate |
and this work ???
void main()
{
#use rs232(baud=1200,parity=N,xmit=PIN_C6,rcv=PIN_C7,bits=8)
x=getc();
#use rs232(baud=9600,parity=N,xmit=PIN_C6 ... |
Topic: serial baud rate |
midoroi
Replies: 10
Views: 10382
|
Forum: General CCS C Discussion Posted: Fri May 10, 2013 3:16 pm Subject: serial baud rate |
My cards are ready
Maybe i have to modify it by a simple wire. |
Topic: serial baud rate |
midoroi
Replies: 10
Views: 10382
|
Forum: General CCS C Discussion Posted: Fri May 10, 2013 1:34 pm Subject: serial baud rate |
can this work ?
#use rs232(baud=1200,rcv=PIN_C7)
#use rs232(baud=9600,rcv=PIN_c6)
void main()
{
while (true)
{char x;
x=getc()
if & ... |
Topic: serial baud rate |
midoroi
Replies: 10
Views: 10382
|
Forum: General CCS C Discussion Posted: Fri May 10, 2013 7:02 am Subject: serial baud rate |
i use 16f876
and i wonna use c7 at the 1200 and the c6 at 9600 |
Topic: serial baud rate |
midoroi
Replies: 10
Views: 10382
|
Forum: General CCS C Discussion Posted: Fri May 10, 2013 6:25 am Subject: serial baud rate |
hello
i need to read in baud=1200 and write in baud=9600.
how i can do it.
i use rx433 and tx433 i have to use 1200 baud
but i have to connect the rx433 in the robot,and the serial port of the ro ... |
Topic: tx433 & rx433 |
midoroi
Replies: 7
Views: 7934
|
Forum: General CCS C Discussion Posted: Tue Apr 16, 2013 12:47 pm Subject: tx433 & rx433 |
help friends,
I need simple program for these components. |
Topic: tx433 & rx433 |
midoroi
Replies: 7
Views: 7934
|
Forum: General CCS C Discussion Posted: Tue Apr 09, 2013 3:32 pm Subject: tx433 & rx433 |
Hi,
Why have you started a new thread on exactly the same topic? This is confusing, because people won't realize it, and a lot of information will need to be repeated. This is a sure way to annoy t ... |
Topic: tx433 & rx433 |
midoroi
Replies: 7
Views: 7934
|
Forum: General CCS C Discussion Posted: Tue Apr 09, 2013 11:38 am Subject: tx433 & rx433 |
i thinked to make if(kbhit()) to read all the bytes.on the place of delay_ms(20)
i means make 5 ==> if (kbhit()) |
Topic: tx433 & rx433 |
midoroi
Replies: 7
Views: 7934
|
Forum: General CCS C Discussion Posted: Tue Apr 09, 2013 10:43 am Subject: tx433 & rx433 |
I have tried many code, and that doesn't work.
I really need a real help here (correcting the code).
Transmission
#include <16F876.h>
#fuses XT,NOWDT,PROTECT,NOBROWNOUT, ... |
Topic: RF Communication |
midoroi
Replies: 6
Views: 9372
|
Forum: General CCS C Discussion Posted: Sat Apr 06, 2013 8:50 am Subject: RF Communication |
The transmit code looks OK if the receiver was perfect. It would be better if the transmitted messages were longer redundant sequences, like "aaaaaa". It would also be better if the differ ... |
Topic: RF Communication |
midoroi
Replies: 6
Views: 9372
|
Forum: General CCS C Discussion Posted: Fri Apr 05, 2013 8:15 pm Subject: RF Communication |
hello
I will make rf communication using tx433 and rx433 with 16f876.
2 led in receceiver and 2 button in transmitter.
Transmitter program:
#include <16F876.h>
#fuses XT,NOWDT,PROTECT,N ... |
|