#include <msp430x16x.h>#include <local/queue.h>#include <vcs_bsp/analog.h>#include <vcs_bsp/clock.h>#include <vcs_bsp/dio.h>#include <vcs_bsp/serial.h>#include <vcs_bsp/timer.h>#include <vcs_bsp/debug.h>Include dependency graph for vcsbsp.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| void | init_bsp (void) |
|
|
Definition at line 53 of file main.c. References init_a2d(), init_clock_module(), init_dac(), init_dio(), init_serial_0(), init_serial_1(), init_timer_a(), and init_timer_b(). 00053 {
00054 WDTCTL = WDTPW + WDTHOLD; // Stop watchdog
00055 init_clock_module();
00056 init_dio();
00057 init_serial_0();
00058 init_serial_1();
00059 init_timer_a();
00060 init_timer_b();
00061 init_a2d();
00062 init_dac();
00063 _EINT(); // Enable interrupts
00064 }
|
Here is the call graph for this function:

1.3.9.1