sensor_service.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief sensor service interface
  9. */
  10. #include <mem_manager.h>
  11. #include <app_manager.h>
  12. #include <srv_manager.h>
  13. #include <msg_manager.h>
  14. #include <sys_manager.h>
  15. #include <thread_timer.h>
  16. #include <sensor_manager.h>
  17. #include <sensor_algo.h>
  18. #include <hr_algo.h>
  19. #include "sensor_sleep.h"
  20. #include "sensor_port.h"
  21. #include "algo_port.h"
  22. #if defined(CONFIG_PM)
  23. #include <pm/pm.h>
  24. #endif
  25. #define SYS_LOG_DOMAIN "sensor_service"
  26. #define CONFIG_SENSORSRV_STACKSIZE 4096
  27. #define CONFIG_SENSORSRV_PRIORITY 5
  28. #define MAX_SENSOR_CB 8
  29. static sensor_res_cb_t sensor_res_cb[MAX_SENSOR_CB] = { NULL };
  30. int sensor_service_callback(int evt_id, sensor_res_t *res)
  31. {
  32. int idx;
  33. // callback
  34. for (idx = 0; idx < MAX_SENSOR_CB; idx ++) {
  35. if (sensor_res_cb[idx] != NULL) {
  36. sensor_res_cb[idx](evt_id, res);
  37. }
  38. }
  39. return 0;
  40. }
  41. static void _sensor_service_init(void)
  42. {
  43. // init sensor
  44. sensor_init();
  45. sensor_sleep_init();
  46. // init algo
  47. algo_init();
  48. // enable sensor
  49. //sensor_algo_enable(ALGO_ACTIVITY_OUTPUT, 0);
  50. //sensor_algo_enable(IN_HEARTRATE, 0);
  51. SYS_LOG_INF("init");
  52. }
  53. static void _sensor_service_exit(void)
  54. {
  55. SYS_LOG_INF("exit");
  56. }
  57. static void _sensor_service_proc(struct app_msg *msg)
  58. {
  59. sensor_dat_t dat;
  60. sensor_res_t *res;
  61. int idx;
  62. SYS_LOG_DBG("sensor cmd %d",msg->cmd);
  63. switch (msg->cmd) {
  64. case MSG_SENSOR_DATA:
  65. while (!sensor_data_is_empty()) {
  66. if (sensor_get_data(&dat) > 0) {
  67. algo_handler(dat.id, &dat);
  68. }
  69. }
  70. break;
  71. case MSG_SENSOR_GET_RESULT:
  72. res = sensor_algo_get_result();
  73. memcpy(msg->ptr, res, sizeof(sensor_res_t));
  74. break;
  75. case MSG_SENSOR_ADD_CB:
  76. for (idx = 0; idx < MAX_SENSOR_CB; idx ++) {
  77. if (sensor_res_cb[idx] == NULL) {
  78. sensor_res_cb[idx] = (sensor_res_cb_t)msg->ptr;
  79. break;
  80. }
  81. }
  82. break;
  83. case MSG_SENSOR_REMOVE_CB:
  84. for (idx = 0; idx < MAX_SENSOR_CB; idx ++) {
  85. if (sensor_res_cb[idx] == (sensor_res_cb_t)msg->ptr) {
  86. sensor_res_cb[idx] = NULL;
  87. break;
  88. }
  89. }
  90. break;
  91. case MSG_SENSOR_ENABLE:
  92. #ifdef CONFIG_SENSOR_ALGO_MOTION_SILAN
  93. if ((msg->reserve == ALGO_ACTIVITY_OUTPUT) || (msg->reserve == ALGO_HANDUP)) {
  94. msg->reserve = IN_ACC;
  95. }
  96. sensor_hal_enable(msg->reserve);
  97. if (msg->reserve == IN_HEARTRATE) {
  98. hr_algo_start(HB);
  99. }
  100. #else
  101. sensor_algo_enable(msg->reserve, (uint32_t)msg->ptr);
  102. #endif
  103. break;
  104. case MSG_SENSOR_DISABLE:
  105. #ifdef CONFIG_SENSOR_ALGO_MOTION_SILAN
  106. if ((msg->reserve == ALGO_ACTIVITY_OUTPUT) || (msg->reserve == ALGO_HANDUP)) {
  107. msg->reserve = IN_ACC;
  108. }
  109. sensor_hal_disable(msg->reserve);
  110. if (msg->reserve == IN_HEARTRATE) {
  111. hr_algo_stop();
  112. }
  113. #else
  114. sensor_algo_disable(msg->reserve, (uint32_t)msg->ptr);
  115. #endif
  116. break;
  117. default:
  118. break;
  119. }
  120. if (msg->sync_sem) {
  121. os_sem_give((os_sem *)msg->sync_sem);
  122. }
  123. }
  124. static void _sensor_service_main_loop(void *parama1, void *parama2, void *parama3)
  125. {
  126. struct app_msg msg = {0};
  127. bool terminaltion = false;
  128. bool suspended = false;
  129. int timeout;
  130. int result = 0;
  131. SYS_LOG_INF("sensor_service enter");
  132. while (!terminaltion) {
  133. timeout = suspended ? OS_FOREVER : thread_timer_next_timeout();
  134. if (receive_msg(&msg, timeout)) {
  135. // SYS_LOG_INF("sensor_service %d %d",msg.type, msg.cmd);
  136. switch (msg.type) {
  137. case MSG_INIT_APP:
  138. _sensor_service_init();
  139. break;
  140. case MSG_EXIT_APP:
  141. _sensor_service_exit();
  142. terminaltion = true;
  143. break;
  144. case MSG_SENSOR_EVENT:
  145. _sensor_service_proc(&msg);
  146. break;
  147. case MSG_SUSPEND_APP:
  148. SYS_LOG_INF("SUSPEND_APP");
  149. sensor_sleep_suspend();
  150. suspended = true;
  151. break;
  152. case MSG_RESUME_APP:
  153. SYS_LOG_INF("RESUME_APP");
  154. sensor_sleep_resume();
  155. suspended = false;
  156. break;
  157. default:
  158. break;
  159. }
  160. if (msg.callback) {
  161. msg.callback(&msg, result, NULL);
  162. }
  163. }
  164. thread_timer_handle_expired();
  165. }
  166. }
  167. char __aligned(ARCH_STACK_PTR_ALIGN) sensorsrv_stack_area[CONFIG_SENSORSRV_STACKSIZE];
  168. SERVICE_DEFINE(sensor_service, \
  169. sensorsrv_stack_area, sizeof(sensorsrv_stack_area), \
  170. CONFIG_SENSORSRV_PRIORITY, BACKGROUND_APP, \
  171. NULL, NULL, NULL, \
  172. _sensor_service_main_loop);