/* * Copyright (c) 2020 Texas Instruments Incorporated - http://www.ti.com * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ #include "board.h" //***************************************************************************** // // Board Configurations // Initializes the rest of the modules. // Call this function in your application if you wish to do all module // initialization. // If you wish to not use some of the initializations, instead of the // Board_init use the individual Module_inits // //***************************************************************************** void Board_init() { EALLOW; PinMux_init(); CPUTIMER_init(); GPIO_init(); SCI_init(); INTERRUPT_init(); EDIS; } //***************************************************************************** // // PINMUX Configurations // //***************************************************************************** void PinMux_init() { // // PinMux for modules assigned to CPU1 // // GPIO31 -> LED_Blue Pinmux GPIO_setPinConfig(GPIO_31_GPIO31); // // SCIA -> mySCI0 Pinmux // GPIO_setPinConfig(mySCI0_SCIRX_PIN_CONFIG); GPIO_setPadConfig(mySCI0_SCIRX_GPIO, GPIO_PIN_TYPE_STD | GPIO_PIN_TYPE_PULLUP); GPIO_setQualificationMode(mySCI0_SCIRX_GPIO, GPIO_QUAL_ASYNC); GPIO_setPinConfig(mySCI0_SCITX_PIN_CONFIG); GPIO_setPadConfig(mySCI0_SCITX_GPIO, GPIO_PIN_TYPE_STD | GPIO_PIN_TYPE_PULLUP); GPIO_setQualificationMode(mySCI0_SCITX_GPIO, GPIO_QUAL_ASYNC); } //***************************************************************************** // // CPUTIMER Configurations // //***************************************************************************** void CPUTIMER_init(){ myCPUTIMER0_init(); } void myCPUTIMER0_init(){ CPUTimer_setEmulationMode(myCPUTIMER0_BASE, CPUTIMER_EMULATIONMODE_STOPAFTERNEXTDECREMENT); CPUTimer_setPreScaler(myCPUTIMER0_BASE, 0U); CPUTimer_setPeriod(myCPUTIMER0_BASE, 10000U); CPUTimer_enableInterrupt(myCPUTIMER0_BASE); CPUTimer_stopTimer(myCPUTIMER0_BASE); CPUTimer_reloadTimerCounter(myCPUTIMER0_BASE); } //***************************************************************************** // // GPIO Configurations // //***************************************************************************** void GPIO_init(){ LED_Blue_init(); } void LED_Blue_init(){ GPIO_setPadConfig(LED_Blue, GPIO_PIN_TYPE_STD); GPIO_setQualificationMode(LED_Blue, GPIO_QUAL_SYNC); GPIO_setDirectionMode(LED_Blue, GPIO_DIR_MODE_OUT); GPIO_setControllerCore(LED_Blue, GPIO_CORE_CPU1); } //***************************************************************************** // // INTERRUPT Configurations // //***************************************************************************** void INTERRUPT_init(){ // Interrupt Settings for INT_myCPUTIMER0 // ISR need to be defined for the registered interrupts Interrupt_register(INT_myCPUTIMER0, &TIMER0_ISR); Interrupt_enable(INT_myCPUTIMER0); } //***************************************************************************** // // SCI Configurations // //***************************************************************************** void SCI_init(){ mySCI0_init(); } void mySCI0_init(){ SCI_clearInterruptStatus(mySCI0_BASE, SCI_INT_RXFF | SCI_INT_TXFF | SCI_INT_FE | SCI_INT_OE | SCI_INT_PE | SCI_INT_RXERR | SCI_INT_RXRDY_BRKDT | SCI_INT_TXRDY); SCI_clearOverflowStatus(mySCI0_BASE); SCI_resetTxFIFO(mySCI0_BASE); SCI_resetRxFIFO(mySCI0_BASE); SCI_resetChannels(mySCI0_BASE); SCI_setConfig(mySCI0_BASE, DEVICE_LSPCLK_FREQ, mySCI0_BAUDRATE, (SCI_CONFIG_WLEN_8|SCI_CONFIG_STOP_ONE|SCI_CONFIG_PAR_NONE)); SCI_disableLoopback(mySCI0_BASE); SCI_performSoftwareReset(mySCI0_BASE); SCI_enableFIFO(mySCI0_BASE); SCI_enableModule(mySCI0_BASE); }