minor corrections to adhere contiki code style guidelines

This commit is contained in:
Giovanni `evilaliv3` Pellerano 2012-12-21 12:36:29 +01:00
parent aa07993d36
commit ee556dcf14
7 changed files with 47 additions and 47 deletions

View file

@ -150,9 +150,9 @@
int8_t \
pic32_uart##XX##_write(uint8_t data) \
{ \
while (U##XX##STAbits.UTXBF); \
while(U##XX##STAbits.UTXBF); \
U##XX##TXREG = data; \
while (!U##XX##STAbits.TRMT); \
while(!U##XX##STAbits.TRMT); \
\
return UART_NO_ERROR; \
}