uart.c
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include <stdlib.h>
00014 #include <string.h>
00015
00016 #include "cc2430_sfr.h"
00017
00018 #include "dev/leds.h"
00019 #include "dev/uart.h"
00020
00021
00022
00023 void
00024 uart0_writeb(uint8_t byte)
00025 {
00026 IRCON2_UTX0IF = 0;
00027 U0BUF = byte;
00028 while(!IRCON2_UTX0IF);
00029 IRCON2_UTX0IF = 0;
00030 }
00031
00032
00033 void
00034 uart1_writeb(uint8_t byte)
00035 {
00036 IRCON2_UTX1IF = 0;
00037 U1BUF = byte;
00038 while(!IRCON2_UTX1IF);
00039 IRCON2_UTX1IF = 0;
00040 }
00041