/****************************************************************************** @file main_freertos.c @brief main entry of the BLE stack sample application. Group: WCS, BTS Target Device: cc23xx ****************************************************************************** Copyright (c) 2023, Texas Instruments Incorporated 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. ****************************************************************************** *****************************************************************************/ /******************************************************************************* * INCLUDES */ /* RTOS header files */ #include #include #include #include #include #include #include #include #include #include "npi_data.h" #include #include #include /* Header files required to enable instruction fetch cache */ #include DeviceFamily_constructPath(inc/hw_memmap.h) #include "rtls_ctrl_api.h" #include "micro_ble_cm.h" #include "micro_cm_app.h" #ifdef USE_RCL #include DeviceFamily_constructPath(inc/hw_fcfg.h) #endif #include DeviceFamily_constructPath(inc/hw_types.h) #include DeviceFamily_constructPath(inc/hw_ioc.h) #include DeviceFamily_constructPath(inc/hw_memmap.h) /******************************************************************************* * MACROS */ /******************************************************************************* * CONSTANTS */ /******************************************************************************* * TYPEDEFS */ /******************************************************************************* * LOCAL VARIABLES */ /******************************************************************************* * GLOBAL VARIABLES */ /******************************************************************************* * EXTERNS */ extern assertCback_t halAssertCback; extern void AssertHandler(uint8 assertCause, uint8 assertSubcause); extern Display_Handle dispHandle; extern void NPIData_postAssertNpiMsgEvent(uint8_t assertType); /******************************************************************************* * @fn Main * * @brief Application Main * * input parameters * * @param None. * * output parameters * * @param None. * * @return None. */ int main() { /* Register Application callback to trap asserts raised in the Stack */ halAssertCback = AssertHandler; Board_init(); /* IO for TX Indication */ HWREG(IOC_BASE + IOC_O_IOC11) |= IOC_IOC11_PORTCFG_PFUNC4; /* IO for RX Indication */ HWREG(IOC_BASE + IOC_O_IOC21) |= IOC_IOC21_PORTCFG_PFUNC5; /* Create Application task. */ MicroCmApp_init(); MicroCmApp_stack_init(); /* Kick off RTLS Control module - Priority 2 */ rtlsConfiguration_t rtlsConfig; rtlsConfig.rtlsCapab = (rtlsCapabilities_e)(RTLS_CAP_RTLS_CONNECTION_MONITOR | RTLS_CAP_CM); // Device ID and revision rtlsConfig.devId = DeviceFamily_ID; rtlsConfig.revNum = RTLS_CTRL_REV; rtlsConfig.maxNumConns = CM_MAX_SESSIONS; // fetch BDADDR from FCFG memcpy( rtlsConfig.identifier, (uint8 *)fcfg->deviceInfo.bleAddr, CHIP_ID_SIZE ); rtlsConfig.rtlsAppCb = MicroCmApp_rtlsCtrlMsgCb; RTLSCtrl_open(&rtlsConfig); /* Start the FreeRTOS scheduler */ vTaskStartScheduler(); return 0; } /******************************************************************************* * @fn AssertHandler * * @brief This is the callback handler for asserts raised in the stack or * the application. * * An application developer is encouraged to extend this function * for use by their own application. To do this, add hal_assert.c * to your project workspace, the path to hal_assert.h (this can * be found on the stack side). Asserts are raised by including * hal_assert.h and using macro HAL_ASSERT(cause) to raise an * assert with argument assertCause. the assertSubcause may be * optionally set by macro HAL_ASSERT_SET_SUBCAUSE(subCause) prior * to asserting the cause it describes. More information is * available in hal_assert.h. * * input parameters * * @param assertCause - Assert cause as defined in hal_assert.h. * @param assertSubcause - Optional assert subcause (see hal_assert.h). * * output parameters * * @param None. * * @return None. */ void AssertHandler(uint8 assertCause, uint8 assertSubcause) { // Free NPI task to send final NPI assert message NPIData_postAssertNpiMsgEvent(assertCause); // Open the display if the app has not already done so if ( !dispHandle ) { dispHandle = Display_open(Display_Type_ANY, NULL); } // check the assert cause switch (assertCause) { case HAL_ASSERT_CAUSE_INTERNAL_ERROR: // check the subcause if (assertSubcause == HAL_ASSERT_SUBCAUSE_FW_INERNAL_ERROR) { #if !defined(Display_DISABLE_ALL) Display_print0(dispHandle, 0, 0, "***ERROR***"); Display_print0(dispHandle, 2, 0, ">> INTERNAL FW ERROR!"); #endif } else { #if !defined(Display_DISABLE_ALL) Display_print0(dispHandle, 0, 0, "***ERROR***"); Display_print0(dispHandle, 2, 0, ">> INTERNAL ERROR!"); #endif } break; default: #if !defined(Display_DISABLE_ALL) Display_print0(dispHandle, 0, 0, "***ERROR***"); Display_print0(dispHandle, 2, 0, ">> DEFAULT SPINLOCK!"); #endif HAL_ASSERT_SPINLOCK; } return; } void RCL_Tracer_enable(void) { /* TX, RX Indication */ HWREG(LRFDDBELL_BASE + LRFDDBELL_O_GPOSEL0) = HWREG_READ_LRF(LRFDDBELL_BASE + LRFDDBELL_O_GPOSEL0) | LRFDDBELL_GPOSEL0_SRC0_RFEGPO0; HWREG(LRFDDBELL_BASE + LRFDDBELL_O_GPOSEL0) = HWREG_READ_LRF(LRFDDBELL_BASE + LRFDDBELL_O_GPOSEL0) | LRFDDBELL_GPOSEL0_SRC1_RFEGPO1; } /******************************************************************************* */