/* * ======== Grace_init ========= * Initialize all configured Grace peripherals */ void Grace_init(void) { /* Stop watchdog timer from timing out during initial start-up. */ WDTCTL = WDTPW | WDTHOLD; /* initialize Config for the MSP430F2xx Flash Memory Controller */ Flash_graceInit(); /* initialize Config for the MSP430 GPIO */ GPIO_graceInit(); /* initialize Config for the MSP430 2xx family clock systems (BCS) */ BCSplus_graceInit(); /* initialize Interrupt vector support */ InterruptVectors_graceInit(); /* initialize Config for the MSP430 System Registers */ System_graceInit(); /* initialize Config for the MSP430 A3 Timer0 */ Timer1_A3_graceInit(); /* initialize Config for the MSP430 WDT+ */ WDTplus_graceInit(); }
/* * ======== Grace_init ========= * Initialize all configured Grace peripherals */ void Grace_init(void) { /* Stop watchdog timer from timing out during initial start-up. */ WDTCTL = WDTPW | WDTHOLD; /* initialize Config for the MSP430 GPIO */ GPIO_graceInit(); /* initialize Config for the MSP430 2xx family clock systems (BCS) */ BCSplus_graceInit(); /* initialize Config for the MSP430 10-bit Analog to Digital Converter (ADC) */ ADC10_graceInit(); /* initialize Interrupt vector support */ InterruptVectors_graceInit(); /* initialize Config for the MSP430 A3 Timer0 */ Timer0_A3_graceInit(); /* initialize Config for the MSP430 System Registers */ System_graceInit(); /* initialize Config for the MSP430 WDT+ */ WDTplus_graceInit(); }