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.

how can send text message throw uart using proteus VSM simulation

Status
Not open for further replies.

kimsan

Newbie level 5
Joined
Oct 10, 2011
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,344
here is my example program that i try to send character one by one throw uart. it is ok. but when i try to send text. it doesn't work. can any body give some example? i use Mikro C Programming compiler.

void main()
{
const i = 'C';
UART1_Init(19200);
while(1){
UART1_Write(i);
delay_ms(1000);
}
}

thank!!
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top