Author |
Message |
Topic: 5V uart hardware |
azHer
Replies: 6
Views: 7504
|
Forum: General CCS C Discussion Posted: Tue Jun 02, 2009 8:41 pm Subject: 5V uart hardware |
I already ask the supplier about baud rate setting. The baud is 115,200.
I try at this baud rate with the above code, but no work. Anyone has an idea? How should I try this in other way |
Topic: 5V uart hardware |
azHer
Replies: 6
Views: 7504
|
Forum: General CCS C Discussion Posted: Mon Jun 01, 2009 11:22 pm Subject: 5V uart hardware |
This is the hardware link.
http://www.stronglink.cn/english/sl015m1.htm
When I powered 5V to this hardware all pin Rx and Tx are 5V.
I try this code but it's no work. It just stop after display ... |
Topic: USART Problem , help me please |
azHer
Replies: 3
Views: 5249
|
Forum: General CCS C Discussion Posted: Tue Mar 31, 2009 12:42 am Subject: Re: USART Problem , help me please |
Hai Atomy! Do you have success to interface your 16f877 to Rfid module?
I also want to try that module. Is it ok to start with command to Control Red Led?
Just to get some idea. |
Topic: receive data from UART hardware |
azHer
Replies: 4
Views: 4258
|
Forum: General CCS C Discussion Posted: Wed May 28, 2008 8:01 am Subject: receive data from UART hardware |
Thanks for reply me
I'm rellly slow in programming. Thanks for your help before.
Here is one more thing I dont know. After send this data:
unsigned char SendData
the UART hardware ... |
Topic: How to get byte[4] to byte[7] and display |
azHer
Replies: 0
Views: 2328
|
Forum: General CCS C Discussion Posted: Wed May 28, 2008 2:40 am Subject: How to get byte[4] to byte[7] and display |
Hai! All..
I try to send this command using 877A to uart hardware. Data send from Header to checksum.
Header.....Length....Command....Block.....Checksum
0xBA........ 0x03.........0x05........ ... |
Topic: receive data from UART hardware |
azHer
Replies: 4
Views: 4258
|
Forum: General CCS C Discussion Posted: Thu May 22, 2008 8:34 am Subject: receive data from UART hardware |
Start with your 'putc'. Putc, accepts _one_ character. Your array has characters at locations SelectCard
int8 ctr;
for (ctr=0;ctr<3;ctr++) putc(SelectCard[ctr]);
Th ... |
Topic: receive data from UART hardware |
azHer
Replies: 4
Views: 4258
|
Forum: General CCS C Discussion Posted: Thu May 22, 2008 1:29 am Subject: receive data from UART hardware |
Hi All...
I want to send and receive data using PIC and UART hardware.
The data to send is:
unsigned char SelectCard
I will receive data like this:
byte0,byt1,byte2,byt3,byte4,byte5,byt ... |
|