/* * INCLUDE FILES **************************************************************************************** */ #include #include #include "gap_api.h" #include "gatt_api.h" #include "ble_stack.h" #include "app_config.h" #include "jump_table.h" #include "co_log.h" #include "plf.h" #include "driver_system.h" #include "driver_pmu.h" #include "driver_uart.h" #include "app_at.h" #include "ble_simple_peripheral.h" #include "simple_gatt_service.h" #include "user_uart.h" #undef LOG_LOCAL_LEVEL #define LOG_LOCAL_LEVEL (LOG_LEVEL_INFO) const char *app_tag = "project"; #define SYSTEM_STACK_SIZE 0x800 /* * LOCAL VARIABLES */ __attribute__((section("stack_section"))) static uint32_t system_stack[SYSTEM_STACK_SIZE/sizeof(uint32_t)]; const struct jump_table_version_t _jump_table_version __attribute__((section("jump_table_3"))) = { .stack_top_address = &system_stack[SYSTEM_STACK_SIZE/sizeof(uint32_t)], .firmware_version = 0x00000000, }; const struct jump_table_image_t _jump_table_image __attribute__((section("jump_table_1"))) = { .image_type = IMAGE_TYPE_APP, .image_size = 0x19000, }; /********************************************************************* * @fn user_entry_before_sleep_imp * * @return None. */ __attribute__((section("ram_code"))) void user_entry_before_sleep_imp(void) { uart_putc_noint_no_wait(UART0, 's'); co_delay_100us(1); pmu_set_pin_to_PMU(GPIO_PORT_A, (1<