hobby_85
Joined: 17 Aug 2009 Posts: 50
|
fputc() |
Posted: Mon Aug 24, 2009 9:54 am |
|
|
Hey, just had a quick question. If I am transmitting something over RF, and have several fputc() statements one after another, does the function buffer/queue the data?
Or would i be force feeding it before it has time to pass through the UART?
My statements look like this at present:
Code: |
fputc(NUL,COM_A); //send out stream AAA
fputc(NUL,COM_A);
fputc(NUL,COM_A);
fputc(STX,COM_A);
fputc('A',COM_A);
fputc('A',COM_A);
fputc('A',COM_A);
fputc(CRC,COM_A); //send out checksum of 85
fputc(CR,COM_A);
|
thanks |
|