Author |
Message |
Topic: Did anyone succeed in receiving SMS with PIC |
jasonwhw
Replies: 2
Views: 4332
|
Forum: General CCS C Discussion Posted: Tue Apr 18, 2006 2:16 am Subject: Did anyone succeed in receiving SMS with PIC |
Hi,
Just wondering anyone succeed in using a PIC microcontroller to receive SMS message connected via MAX232. |
Topic: receiving sms |
jasonwhw
Replies: 3
Views: 6203
|
Forum: General CCS C Discussion Posted: Wed Mar 22, 2006 9:25 pm Subject: receiving sms |
Do u mind telling how you connect ur hardware? Are you using MAX232?
I am doing a similar project but I was unable to receive SMS. |
Topic: Sending and receiving fixed sms |
jasonwhw
Replies: 9
Views: 12136
|
Forum: General CCS C Discussion Posted: Thu Mar 16, 2006 7:08 pm Subject: Sending and receiving fixed sms |
if you are not using the default pin, it will trigger the PIC to use software UART. i suggest you try again using the default pin C6 and C7(hardware UART). |
Topic: Sending and receiving fixed sms |
jasonwhw
Replies: 9
Views: 12136
|
Forum: General CCS C Discussion Posted: Thu Mar 16, 2006 4:43 am Subject: Sending and receiving fixed sms |
I'm using printf command to send simple AT command to the mobile phone to send SMS out. I'm using
void SEND_SMS1()
{
PRINTF("\n\rAT+CMGS=37\n\r");
DELAY_MS ... |
Topic: Sending and receiving fixed sms |
jasonwhw
Replies: 9
Views: 12136
|
Forum: General CCS C Discussion Posted: Thu Mar 16, 2006 4:01 am Subject: Sending and receiving fixed sms |
hey,
I am also doing quite a similar project.Currently I am able to send sms but unable to receive sms.So if anyone out there who can help, please do help us.thanks
jasonwhw. |
Topic: Yet another project using PIC16F877 to send & receive SM |
jasonwhw
Replies: 6
Views: 8536
|
Forum: General CCS C Discussion Posted: Thu Mar 16, 2006 3:58 am Subject: Yet another project using PIC16F877 to send & receive SM |
each mobile phone has their own pin configuration.try search the net.you should be able to find your mobile pin configuration.you can send & receive SMS by using AT command.it is a command used fo ... |
Topic: Yet another project using PIC16F877 to send & receive SM |
jasonwhw
Replies: 6
Views: 8536
|
Forum: General CCS C Discussion Posted: Wed Mar 15, 2006 10:38 pm Subject: Yet another project using PIC16F877 to send & receive SM |
So you are suggesting that I should use a buffer for transmission thru RS232. As for the receive code, use a state machine or decode incoming data outside the int_rda interrupt handler.
Do you thin ... |
Topic: Yet another project using PIC16F877 to send & receive SM |
jasonwhw
Replies: 6
Views: 8536
|
Forum: General CCS C Discussion Posted: Tue Mar 14, 2006 2:35 am Subject: Yet another project using PIC16F877 to send & receive SM |
Hi there,
I know that there are many posting regarding this project but I could find one that can help me solve my problem. Here is my situation,
I can successfully send SMS out but I could not ... |
|