123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- /*
- * INCLUDE FILES
- ****************************************************************************************
- */
- #include <stdio.h>
- #include <string.h>
- #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<<GPIO_BIT_0));
- pmu_set_pin_dir(GPIO_PORT_A, (1<<GPIO_BIT_0), GPIO_DIR_IN);
- pmu_set_pin_pull(GPIO_PORT_A, (1<<GPIO_BIT_0),GPIO_PULL_NONE);
- }
- /*********************************************************************
- * @fn user_entry_after_sleep_imp
- *
- * @brief After system wakes up from sleep mode, user_entry_after_sleep_imp()
- * will be called, MCU peripherals need to be initialized again,
- * this can be done in user_entry_after_sleep_imp(). MCU peripherals
- * status will not be kept during the sleep.
- *
- * @param None.
- *
- *
- * @return None.
- */
- __attribute__((section("ram_code"))) void user_entry_after_sleep_imp(void)
- {
- pmu_set_pin_to_CPU(GPIO_PORT_A, (1<<GPIO_BIT_0));
-
- system_set_port_mux(GPIO_PORT_A, GPIO_BIT_0, PORTA0_FUNC_UART0_RXD);
- system_set_port_mux(GPIO_PORT_A, GPIO_BIT_1, PORTA1_FUNC_UART0_TXD);
- uart_init(UART0, 1152);
- fr_uart_enableIrq(UART0, Uart_irq_erbfi);
- uart_putc_noint_no_wait(UART0, 'w');
- co_delay_100us(1);
- NVIC_EnableIRQ(PMU_IRQn);
- }
- __attribute__((section("ram_code"))) void main_loop(void)
- {
- while(1)
- {
- if(ble_stack_schedule_allow())
- {
- /*user code should be add here*/
-
- /* schedule internal stack event */
- ble_stack_schedule();
- }
-
- GLOBAL_INT_DISABLE();
- switch(ble_stack_sleep_check())
- {
- case 2:
- {
- ble_stack_enter_sleep();
- }
- break;
- default:
- break;
- }
- GLOBAL_INT_RESTORE();
-
- ble_stack_schedule_backward();
- }
- }
- /*********************************************************************
- * @fn proj_init
- *
- * @brief Main entrancy of user application. This function is called after BLE stack
- * is initialized, and all the application code will be executed from here.
- * In that case, application layer initializtion can be startd here.
- *
- * @param None.
- *
- *
- * @return None.
- */
- void proj_init(void)
- {
- LOG_INFO(app_tag, "BLE Peripheral\r\n");
-
- // Application layer initialization, can included bond manager init,
- // advertising parameters init, scanning parameter init, GATT service adding, etc.
- simple_peripheral_init();
- }
- /*********************************************************************
- * @fn user_main
- *
- * @brief Code to be executed for BLE stack initialization, Power mode
- * configurations, etc.
- *
- * @param None.
- *
- *
- * @return None.
- */
- //__attribute__((section("test_mem")))volatile uint32_t test_mem_size;
- #define ASIZE 10*1024
- uint8_t testbuff[ASIZE]={0};
-
- void user_main(void)
- {
- /* initialize log module */
- log_init();
- /* initialize PMU module at the beginning of this program */
- pmu_sub_init();
- /* set system clock */
- system_set_clock(SYSTEM_CLOCK_SEL);
- /* set local BLE address */
- mac_addr_t mac_addr;
- mac_addr.addr[0] = 0xbd;
- mac_addr.addr[1] = 0xad;
- mac_addr.addr[2] = 0x10;
- mac_addr.addr[3] = 0x11;
- mac_addr.addr[4] = 0x20;
- mac_addr.addr[5] = 0x20;
- gap_address_set(&mac_addr, BLE_ADDR_TYPE_PRIVATE);
-
- /* configure ble stack capabilities */
- ble_stack_configure(BLE_STACK_ENABLE_MESH,
- BLE_STACK_ENABLE_CONNECTIONS,
- BLE_STACK_RX_BUFFER_CNT,
- BLE_STACK_RX_BUFFER_SIZE,
- BLE_STACK_TX_BUFFER_CNT,
- BLE_STACK_TX_BUFFER_SIZE,
- BLE_STACK_ADV_BUFFER_SIZE,
- BLE_STACK_RETENTION_RAM_SIZE,
- BLE_STACK_KEY_STORAGE_OFFSET);
- /* initialize ble stack */
-
- ble_stack_init();
- /* initialize SMP */
- gap_bond_manager_init(BLE_BONDING_INFO_SAVE_ADDR, BLE_REMOTE_SERVICE_SAVE_ADDR, 8, true);
- //app_at_init();
- extern void uart0_init(uint32_t baudrate);
- extern void uart1_init(uint32_t baudrate);
- uart0_init(115200);
- uart1_init(115200);
- proj_init();
- // for(uint32_t i = 0 ;i<ASIZE;i++)
- // {
- // testbuff[i]=0xff;
- // }
- // printf("size %d \r\n",test_mem_size);
- //
- // uint8_t hexp=testbuff[9];
- //user_uart_init();
- /* enter main loop */
- main_loop();
- }
|