Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i will view data text in richTextBox,
I've been communicating serial port, but my trouble retrieving text data from AVR.


thank you,...
Posted
Comments
Christian Graus 19-Dec-12 18:52pm    
You should read the manual that came with your hardware, and look if they have a website for support.
Mike Hankey 19-Dec-12 19:44pm    
You need to be more specific about what you're trying to do and what you've tried. Are you using the AVR UART?, are you bit banging or ???
What serial port virtual driver are you using?
Are you using AVR serial library code or your own?
edi nurjamil 20-Dec-12 0:17am    
this code from avr, iam using atmega8.

while (1)
{
int dataAdc;
dataAdc = read_adc(0);
printf("%drn",dataAdc);
delay_ms(300);
};

I just want to display the data ADC, to configure port communication is successful, but I can not display the data ADC.

i wan display on segmen gauge from InstrumenLab.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900