diff options
Diffstat (limited to 'demos/MSP430-MSP430x1611-GCC/board.c')
-rw-r--r-- | demos/MSP430-MSP430x1611-GCC/board.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/demos/MSP430-MSP430x1611-GCC/board.c b/demos/MSP430-MSP430x1611-GCC/board.c index caef10720..e6ae187da 100644 --- a/demos/MSP430-MSP430x1611-GCC/board.c +++ b/demos/MSP430-MSP430x1611-GCC/board.c @@ -21,6 +21,7 @@ #include <signal.h>
#include "board.h"
+#include "msp430_serial.h"
/*
* Hardware initialization goes here.
@@ -77,6 +78,11 @@ void hwinit(void) { TACTL = TACLR; /* Clean start. */
TACTL = TASSEL_2 | MC_1; /* Src=SMCLK, cmp=TACCR0. */
TACCTL0 = CCIE; /* Interrupt on compare. */
+
+ /*
+ * Other subsystems.
+ */
+ InitSerial();
}
interrupt(TIMERA0_VECTOR) tmr0irq(void) {
|