Empty files for STM32F407 support.
[goodfet] / firmware / lib / stm32f407.c
1 //! MSP430F2618 clock and I/O definitions
2
3 // Included by other 2xx ports, such as the 2274.
4
5 #include "platform.h"
6
7
8 //! Receive a byte.
9 unsigned char serial0_rx(){
10 }
11
12 //! Receive a byte.
13 unsigned char serial1_rx(){
14 }
15
16 //! Transmit a byte.
17 void serial0_tx(unsigned char x){
18 }
19 //! Transmit a byte.
20 void serial_tx_old(unsigned char x){
21 }
22
23 //! Transmit a byte on the second UART.
24 void serial1_tx(unsigned char x){
25
26 }
27
28 //! Set the baud rate.
29 void setbaud0(unsigned char rate){
30   //Ignore this, as we'll be in USB.
31 }
32
33 //! Set the baud rate of the second uart.
34 void setbaud1(unsigned char rate){
35
36 }
37
38 void msp430_init_uart(){
39
40 }
41
42
43 //! Initialization is correct.
44 void msp430_init_dco_done(){
45 }
46
47 //! Initialize the MSP430 clock.
48 void msp430_init_dco() {
49 }
50