Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
08/29/02 18:57
Read: times


 
#28198 - RE: question on computation and serial I/O
"1. What are the 'L' utility?"

This is standard 'C' notation: it tells the compiler to treat the number as a long - presumably to avoid overflow/truncation problems?
See K&R or any other good 'C' book for further details.

UART_Putchar("A");
if you want to put a single character, that should be
UART_Putchar('A');
Again, see your 'C' book for further details

List of 4 messages in thread
TopicAuthorDate
question on computation and serial I/O            01/01/70 00:00      
RE: question on computation and serial I/O            01/01/70 00:00      
RE: question on computation and serial I/O            01/01/70 00:00      
RE: question on computation and serial I/O            01/01/70 00:00      

Back to Subject List