b315d902ed54aed47d929ce49adcf154bed464ec
[goodfet] / firmware / include / platform.h
1 //! \file platform.h
2
3
4 unsigned char serial_rx();
5 void serial_tx(unsigned char);
6 void setbaud(unsigned char);
7 void msp430_init_uart();
8 void msp430_init_dco();
9
10 //LED on P1.0
11 #define PLEDOUT P1OUT
12 #define PLEDDIR P1DIR
13 #define PLEDPIN 0x1
14
15
16