dmta
Member level 2
- Joined
- Mar 25, 2013
- Messages
- 52
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,286
- Location
- Earth
- Activity points
- 1,650
Hi all,
I am trying to do serial communication using proteus and trying to write a value continously to the hyper terminal but I'm getting some wierd symbols. What am I doing wrong ? BTW BEGINNER
Regards
I am trying to do serial communication using proteus and trying to write a value continously to the hyper terminal but I'm getting some wierd symbols. What am I doing wrong ? BTW BEGINNER
Regards
HTML:
void main(){
unsigned int analog;
TRISA.F0 = 1;
Usart_Init(9600);
while(1){
delay_ms(500);
analog = Adc_Read(0);
Usart_Write(analog);
}
}