bsp_time.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. #include "sdk_common.h"
  2. #include "app_timer.h"
  3. #include "bsp_time.h"
  4. #include "nrf_drv_timer.h"
  5. #include "SEGGER_RTT.h"
  6. #include "system.h"
  7. #include "app_timer.h"
  8. #include "nrf_drv_rtc.h"
  9. #include "nrf_pwr_mgmt.h"
  10. #include "hal_imu.h"
  11. /********************** 变量区 *************************/
  12. static const nrf_drv_rtc_t rtc = NRF_DRV_RTC_INSTANCE(2);
  13. static uint8_t isSleep = 0;
  14. volatile static uint32_t time_1ms = 0;
  15. #define time_cb_max 32
  16. static TIME_callback time_cb[time_cb_max]={0};
  17. /********************** 函数声明区 *************************/
  18. static void rtc_tick_handler(nrf_drv_rtc_int_type_t int_type)
  19. {
  20. uint32_t err_code;
  21. if (int_type == NRF_DRV_RTC_INT_COMPARE0)
  22. {
  23. // SEGGER_RTT_printf(0,"1");
  24. // uint32_t tem1 = NRF_RTC0->COUNTER;
  25. nrf_drv_rtc_counter_clear(&rtc);
  26. err_code = nrf_drv_rtc_cc_set(&rtc,NRF_DRV_RTC_INT_COMPARE0,HeartTime_Interval*33,true); APP_ERROR_CHECK(err_code);
  27. if(isSleep==0){
  28. time_1ms+=HeartTime_Interval;
  29. for(int i=0;i<time_cb_max;i++) { //SEGGER_RTT_printf(0,"time_cb[%d]=%d\n",i,time_cb[i]);
  30. if(time_cb[i]){
  31. time_cb[i]((uint32_t*)(&time_1ms)); //回调函数
  32. }
  33. }
  34. // uint32_t tem2 = NRF_RTC0->COUNTER;
  35. // if(tem2<tem1) tem2 += 16777216;
  36. // if(tem2-tem1>0) SEGGER_RTT_printf(0,"rtc_tick_handler(%d)\n",tem2-tem1);
  37. }
  38. }
  39. else if (int_type == NRF_DRV_RTC_INT_TICK)
  40. {
  41. // SEGGER_RTT_printf(0,"NRF_DRV_RTC_INT_TICK(0x%X)\n",NRF_RTC0->COUNTER);
  42. }
  43. }
  44. /********************** 外部函数声明区 *************************/
  45. //=== 系统滴答时间 ===//
  46. uint32_t TIME_GetTicks(void)
  47. {
  48. return time_1ms;
  49. }
  50. int TIME_Regist(TIME_callback cb)
  51. {
  52. for(int i=0;i<time_cb_max;i++) {
  53. if(time_cb[i]==cb) return -2;
  54. if(time_cb[i]==0){
  55. time_cb[i] = cb; //回调函数
  56. return 0;
  57. }
  58. }
  59. return -1;
  60. }
  61. int TIME_UnRegist(TIME_callback cb)
  62. {
  63. for(int i=0;i<time_cb_max;i++){
  64. if(time_cb[i] == cb){
  65. time_cb[i] = 0;
  66. return 0;
  67. }
  68. }
  69. return -1;
  70. }
  71. //int CheckPending_IRQ(int *result,int result_size)
  72. //{
  73. // int index = 0,i = 0;
  74. //
  75. // /* Check which interrupt is pending. Will not work properly if there are more than one pending */
  76. // for (i = POWER_CLOCK_IRQn; i <= FPU_IRQn; i++)
  77. // {
  78. // if (NVIC_GetPendingIRQ(i))
  79. // {
  80. // if(index < result_size)result[index++] = i;
  81. // }
  82. // }
  83. // return index;
  84. //}
  85. //static void idle_state_handle(void)
  86. //{
  87. // ret_code_t err_code;
  88. // int pending_number_before = 0,pending_number_after = 0;
  89. // int result[2][60],i;
  90. // uint32_t region_start,region_end,p_evt_id_before = 0xff,p_evt_id_after = 0xff,ispr0_before = 0,ispr0_after = 0,ispr1_before = 0,ispr1_after = 0;
  91. //// err_code = nrf_ble_lesc_request_handler();
  92. //// APP_ERROR_CHECK(err_code);
  93. //
  94. // CRITICAL_REGION_ENTER();
  95. //
  96. //
  97. // region_start = NRF_RTC2->COUNTER;
  98. // pending_number_before = CheckPending_IRQ(&result[0][0],60);
  99. // sd_evt_get(&p_evt_id_before);
  100. // ispr0_before = NVIC->ISPR[0];
  101. // ispr1_before = NVIC->ISPR[1];
  102. //
  103. // nrf_pwr_mgmt_run();
  104. //
  105. // ispr0_after = NVIC->ISPR[0];
  106. // ispr1_after = NVIC->ISPR[1];
  107. // sd_evt_get(&p_evt_id_after);
  108. // pending_number_after = CheckPending_IRQ(&result[1][0],60);
  109. // region_end = NRF_RTC2->COUNTER;
  110. //
  111. //
  112. // CRITICAL_REGION_EXIT();
  113. //
  114. // SEGGER_RTT_printf(0,"*******wakeup result start*******\n");
  115. //
  116. // if (pending_number_before)
  117. // {
  118. // for(i=0;i<pending_number_before;i++)SEGGER_RTT_printf(0,"pending_total_before[%d]:%d\n",i,result[0][i]);
  119. // memset(&result[0][0],0,60);
  120. // }
  121. //
  122. // if(p_evt_id_before != 0xff)SEGGER_RTT_printf(0,"p_evt_id_before:%d\n",p_evt_id_before);
  123. //
  124. // if (pending_number_after)
  125. // {
  126. // for(i=0;i<pending_number_after;i++)SEGGER_RTT_printf(0,"pending_total_after[%d]:%d\n",i,result[1][i]);
  127. // memset(&result[1][0],0,60);
  128. // }
  129. //
  130. // if(p_evt_id_after != 0xff)SEGGER_RTT_printf(0,"p_evt_id_after:%d\n",p_evt_id_after);
  131. //
  132. // SEGGER_RTT_printf(0,"before---NVIC->ISPR[0]:0x%X, NVIC->ISPR[1]:0x%X\n",ispr0_before,ispr1_before);
  133. // SEGGER_RTT_printf(0,"after----NVIC->ISPR[0]:0x%X, NVIC->ISPR[1]:0x%X\n",ispr0_after,ispr1_after);
  134. //
  135. // SEGGER_RTT_printf(0,"*******wakeup result end*******\n");
  136. //
  137. // SEGGER_RTT_printf (0,"region times: %d\n",region_end-region_start);
  138. //}
  139. uint32_t rtc_sleep(uint8_t is_wearshoes)
  140. {
  141. uint32_t tem1 = NRF_RTC0->COUNTER;
  142. uint32_t ret = 0;
  143. uint32_t err_code;
  144. isSleep = 1;
  145. if(is_wearshoes==0){ err_code = nrf_drv_rtc_cc_set(&rtc,0,StandByPower_Interval * 33,true); APP_ERROR_CHECK(err_code);}
  146. else { err_code = nrf_drv_rtc_cc_set(&rtc,0,LowPower_Interval * 33,true); APP_ERROR_CHECK(err_code);}
  147. nrf_drv_rtc_counter_clear(&rtc);
  148. while(nrf_drv_rtc_counter_get(&rtc) != 0);
  149. //进入睡眠
  150. for(int i=0;i<5;i++){
  151. uint32_t cnt1 = NRF_RTC0->COUNTER;
  152. nrf_pwr_mgmt_run();
  153. // idle_state_handle();
  154. uint32_t cnt2 = NRF_RTC0->COUNTER;
  155. if(cnt2<cnt1) cnt2 += 16777216;
  156. if(cnt2-cnt1>32) break;
  157. }
  158. err_code = nrf_drv_rtc_cc_set(&rtc,0,HeartTime_Interval*33,true); APP_ERROR_CHECK(err_code);
  159. nrf_drv_rtc_counter_clear(&rtc);
  160. while(nrf_drv_rtc_counter_get(&rtc) != 0);
  161. isSleep = 0;
  162. uint32_t tem2 = NRF_RTC0->COUNTER;
  163. if(tem2<tem1) tem2 += 16777216;
  164. ret = (tem2-tem1)/32.768;
  165. return ret;
  166. }
  167. static void cb_timeeWakeup(uint32_t t)
  168. {
  169. time_1ms += t;
  170. //SEGGER_RTT_printf(0,"cb_timeeWakeup(%d)\n",time_1ms);
  171. }
  172. //=== 系统滴答时间初始化 ===//
  173. void TIME_Init(void)
  174. {
  175. uint32_t err_code;
  176. nrf_drv_rtc_config_t config = NRF_DRV_RTC_DEFAULT_CONFIG;
  177. config.interrupt_priority = RTC2_IRQ_PRIORITY;
  178. config.prescaler = 0;// f(RTC) = 32.768kHZ/(prescaler+1) = 8HZ = 125ms
  179. err_code = nrf_drv_rtc_init(&rtc, &config, rtc_tick_handler); APP_ERROR_CHECK(err_code);
  180. err_code = nrf_drv_rtc_cc_set(&rtc,NRF_DRV_RTC_INT_COMPARE0,HeartTime_Interval*33,true); APP_ERROR_CHECK(err_code);
  181. nrf_drv_rtc_counter_clear(&rtc);
  182. nrf_drv_rtc_enable(&rtc);
  183. Wakeup_Regist(cb_timeeWakeup);
  184. }