Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

GSM interfacing with PIC16f877A

Status
Not open for further replies.

mjklein

Newbie level 3
Joined
Jan 12, 2010
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,309
Can anyone know which programming software can be use to write the programming below?Is it suitable for Mikro C software?
I will appreciate your help.Thanks.



program USART_Test

main:

PORTC = 0 'initialize port C
TRISC = $D0 'configure port C bits

SPBRG = 25
TXSTA = $24
RCSTA = $90

Usart_Init(19200) ' Initialize USART module

Usart_Write_Text("AT+CMGF=1" + Chr(13) + Chr(10))
Usart_Write_Text("AT+CMGS="+962796626060"" + Chr(13) + Chr(10))
Usart_Write_Text("hello!!")

end.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top