proj_main.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /*
  2. * INCLUDE FILES
  3. ****************************************************************************************
  4. */
  5. #include <stdio.h>
  6. #include <string.h>
  7. #include "gap_api.h"
  8. #include "gatt_api.h"
  9. #include "ble_stack.h"
  10. #include "app_config.h"
  11. #include "jump_table.h"
  12. #include "co_log.h"
  13. #include "plf.h"
  14. #include "driver_system.h"
  15. #include "driver_pmu.h"
  16. #include "driver_uart.h"
  17. #include "app_at.h"
  18. #include "ble_simple_peripheral.h"
  19. #include "simple_gatt_service.h"
  20. #include "user_uart.h"
  21. #undef LOG_LOCAL_LEVEL
  22. #define LOG_LOCAL_LEVEL (LOG_LEVEL_INFO)
  23. const char *app_tag = "project";
  24. #define SYSTEM_STACK_SIZE 0x800
  25. /*
  26. * LOCAL VARIABLES
  27. */
  28. __attribute__((section("stack_section"))) static uint32_t system_stack[SYSTEM_STACK_SIZE/sizeof(uint32_t)];
  29. const struct jump_table_version_t _jump_table_version __attribute__((section("jump_table_3"))) =
  30. {
  31. .stack_top_address = &system_stack[SYSTEM_STACK_SIZE/sizeof(uint32_t)],
  32. .firmware_version = 0x00000000,
  33. };
  34. const struct jump_table_image_t _jump_table_image __attribute__((section("jump_table_1"))) =
  35. {
  36. .image_type = IMAGE_TYPE_APP,
  37. .image_size = 0x19000,
  38. };
  39. /*********************************************************************
  40. * @fn user_entry_before_sleep_imp
  41. *
  42. * @return None.
  43. */
  44. __attribute__((section("ram_code"))) void user_entry_before_sleep_imp(void)
  45. {
  46. uart_putc_noint_no_wait(UART0, 's');
  47. co_delay_100us(1);
  48. pmu_set_pin_to_PMU(GPIO_PORT_A, (1<<GPIO_BIT_0));
  49. pmu_set_pin_dir(GPIO_PORT_A, (1<<GPIO_BIT_0), GPIO_DIR_IN);
  50. pmu_set_pin_pull(GPIO_PORT_A, (1<<GPIO_BIT_0),GPIO_PULL_NONE);
  51. }
  52. /*********************************************************************
  53. * @fn user_entry_after_sleep_imp
  54. *
  55. * @brief After system wakes up from sleep mode, user_entry_after_sleep_imp()
  56. * will be called, MCU peripherals need to be initialized again,
  57. * this can be done in user_entry_after_sleep_imp(). MCU peripherals
  58. * status will not be kept during the sleep.
  59. *
  60. * @param None.
  61. *
  62. *
  63. * @return None.
  64. */
  65. __attribute__((section("ram_code"))) void user_entry_after_sleep_imp(void)
  66. {
  67. pmu_set_pin_to_CPU(GPIO_PORT_A, (1<<GPIO_BIT_0));
  68. system_set_port_mux(GPIO_PORT_A, GPIO_BIT_0, PORTA0_FUNC_UART0_RXD);
  69. system_set_port_mux(GPIO_PORT_A, GPIO_BIT_1, PORTA1_FUNC_UART0_TXD);
  70. uart_init(UART0, 1152);
  71. fr_uart_enableIrq(UART0, Uart_irq_erbfi);
  72. uart_putc_noint_no_wait(UART0, 'w');
  73. co_delay_100us(1);
  74. NVIC_EnableIRQ(PMU_IRQn);
  75. }
  76. __attribute__((section("ram_code"))) void main_loop(void)
  77. {
  78. while(1)
  79. {
  80. if(ble_stack_schedule_allow())
  81. {
  82. /*user code should be add here*/
  83. /* schedule internal stack event */
  84. ble_stack_schedule();
  85. }
  86. GLOBAL_INT_DISABLE();
  87. switch(ble_stack_sleep_check())
  88. {
  89. case 2:
  90. {
  91. ble_stack_enter_sleep();
  92. }
  93. break;
  94. default:
  95. break;
  96. }
  97. GLOBAL_INT_RESTORE();
  98. ble_stack_schedule_backward();
  99. }
  100. }
  101. /*********************************************************************
  102. * @fn proj_init
  103. *
  104. * @brief Main entrancy of user application. This function is called after BLE stack
  105. * is initialized, and all the application code will be executed from here.
  106. * In that case, application layer initializtion can be startd here.
  107. *
  108. * @param None.
  109. *
  110. *
  111. * @return None.
  112. */
  113. void proj_init(void)
  114. {
  115. LOG_INFO(app_tag, "BLE Peripheral\r\n");
  116. // Application layer initialization, can included bond manager init,
  117. // advertising parameters init, scanning parameter init, GATT service adding, etc.
  118. simple_peripheral_init();
  119. }
  120. /*********************************************************************
  121. * @fn user_main
  122. *
  123. * @brief Code to be executed for BLE stack initialization, Power mode
  124. * configurations, etc.
  125. *
  126. * @param None.
  127. *
  128. *
  129. * @return None.
  130. */
  131. //__attribute__((section("test_mem")))volatile uint32_t test_mem_size;
  132. #define ASIZE 10*1024
  133. uint8_t testbuff[ASIZE]={0};
  134. void user_main(void)
  135. {
  136. /* initialize log module */
  137. log_init();
  138. /* initialize PMU module at the beginning of this program */
  139. pmu_sub_init();
  140. /* set system clock */
  141. system_set_clock(SYSTEM_CLOCK_SEL);
  142. /* set local BLE address */
  143. mac_addr_t mac_addr;
  144. mac_addr.addr[0] = 0xbd;
  145. mac_addr.addr[1] = 0xad;
  146. mac_addr.addr[2] = 0x10;
  147. mac_addr.addr[3] = 0x11;
  148. mac_addr.addr[4] = 0x20;
  149. mac_addr.addr[5] = 0x20;
  150. gap_address_set(&mac_addr, BLE_ADDR_TYPE_PRIVATE);
  151. /* configure ble stack capabilities */
  152. ble_stack_configure(BLE_STACK_ENABLE_MESH,
  153. BLE_STACK_ENABLE_CONNECTIONS,
  154. BLE_STACK_RX_BUFFER_CNT,
  155. BLE_STACK_RX_BUFFER_SIZE,
  156. BLE_STACK_TX_BUFFER_CNT,
  157. BLE_STACK_TX_BUFFER_SIZE,
  158. BLE_STACK_ADV_BUFFER_SIZE,
  159. BLE_STACK_RETENTION_RAM_SIZE,
  160. BLE_STACK_KEY_STORAGE_OFFSET);
  161. /* initialize ble stack */
  162. ble_stack_init();
  163. /* initialize SMP */
  164. gap_bond_manager_init(BLE_BONDING_INFO_SAVE_ADDR, BLE_REMOTE_SERVICE_SAVE_ADDR, 8, true);
  165. //app_at_init();
  166. extern void uart0_init(uint32_t baudrate);
  167. extern void uart1_init(uint32_t baudrate);
  168. uart0_init(115200);
  169. uart1_init(115200);
  170. proj_init();
  171. // for(uint32_t i = 0 ;i<ASIZE;i++)
  172. // {
  173. // testbuff[i]=0xff;
  174. // }
  175. // printf("size %d \r\n",test_mem_size);
  176. //
  177. // uint8_t hexp=testbuff[9];
  178. //user_uart_init();
  179. /* enter main loop */
  180. main_loop();
  181. }