- This topic has 2 replies, 2 voices, and was last updated 12 years, 3 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
|
Microcontroller › AVR › avr programming help
Dear sir,
I have to store a data of size 20bytes using usart port in a 8 bit microcontroller(Atxmega 384d3).pls guide me how to do this
Hi,
What is so difficult about it? ‘char A [ 20 ];’ will do the job.
Or you can use ‘u8 A [ 20 ];’
u8 is the data type having 8 bytes. The representation varies depending upon the compiler used!
thanks a lot sir