Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~137 People Reached
Favorite Forums
Favorite Tags
Member Avatar for Ramsha_1

ok here is the problem. im trying to send data from UART of ATMEGA 32 to my PC on hyperterminal following is the program im using: #include<mega32.h> #include<delay.h> void usart_init (void) { UCSRB = (1<<TXEN); UCSRC = (1<<UCSZ1)| (1<<UCSZ0)|(1<<URSEL); UBRRL = 0x47; } void usart_send (unsigned char ch) { while(!(UCSRA …

Member Avatar for Ramsha_1
0
137