/** ******************************************************************************* * @file app.c * @create 2023-08-01 * @author Panchip BLE GROUP * @note * Copyright (c) 2022 Shanghai Panchip Microelectronics Co.,Ltd. * ******************************************************************************* */ #include "app.h" #include "app_log.h" /** ******************************************************************************* * @brief user initialization entry ******************************************************************************* */ void setup(void) { APP_LOG_INFO("app started\n"); /* ble stack initialization. */ app_ble_init(); /** * TODO: user add application initialization code in here. */ } /** ******************************************************************************* * @brief this is main thread entry if CONFIG_OS_EN=1; * this is main loop entry if CONFIG_OS_EN=0 ******************************************************************************* */ void loop(void) { }