sensor_port.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*******************************************************************************
  2. * @file sensor_port.c
  3. * @author MEMS Application Team
  4. * @version V1.0
  5. * @date 2020-08-12
  6. * @brief sensor testing
  7. *******************************************************************************/
  8. /******************************************************************************/
  9. //includes
  10. /******************************************************************************/
  11. #include <stdio.h>
  12. #include <string.h>
  13. #include <zephyr.h>
  14. #include <drivers/ipmsg.h>
  15. #include <rbuf/rbuf_msg_sc.h>
  16. #include "sensor_port.h"
  17. #include "sensor_manager.h"
  18. #include <os_common_api.h>
  19. #include <sys/ring_buffer.h>
  20. /******************************************************************************/
  21. //constants
  22. /******************************************************************************/
  23. #define MAX_SENSOR_DATA_NUM (4)
  24. /******************************************************************************/
  25. //variables
  26. /******************************************************************************/
  27. static void _sensor_work_handler(struct k_work *work);
  28. static sensor_dat_t sensor_dat[MAX_SENSOR_DATA_NUM];
  29. static struct ring_buf sensor_rbuf;
  30. static os_delayed_work sensor_work;
  31. /******************************************************************************/
  32. //functions
  33. /******************************************************************************/
  34. static void _sensor_work_handler(struct k_work *work)
  35. {
  36. sensor_send_msg(MSG_SENSOR_DATA, 0, NULL, 0);
  37. }
  38. static void sensor_task_callback(int id, sensor_dat_t *dat, void *ctx)
  39. {
  40. int ret = ring_buf_put(&sensor_rbuf, (const uint8_t *)dat, sizeof(sensor_dat_t));
  41. if (!ret) {
  42. SYS_LOG_ERR("sensor rbuf full");
  43. }
  44. #ifdef CONFIG_USER_WORK_Q
  45. os_work_q *work_queue = os_get_user_work_queue();
  46. os_delayed_work_submit_to_queue(work_queue, &sensor_work, 0);
  47. #else
  48. os_delayed_work_submit(&sensor_work, 0);
  49. #endif
  50. }
  51. int sensor_init(void)
  52. {
  53. int ret;
  54. /* init sensor */
  55. ret = sensor_hal_init();
  56. if(ret != 0) {
  57. SYS_LOG_ERR("sensor init failed!");
  58. }
  59. /* add callback */
  60. sensor_hal_add_callback(ID_ACC, sensor_task_callback, NULL);
  61. sensor_hal_add_callback(ID_MAG, sensor_task_callback, NULL);
  62. sensor_hal_add_callback(ID_BARO, sensor_task_callback, NULL);
  63. sensor_hal_add_callback(ID_HR, sensor_task_callback, NULL);
  64. sensor_hal_add_callback(ID_GYRO, sensor_task_callback, NULL);
  65. ring_buf_init(&sensor_rbuf, sizeof(sensor_dat), sensor_dat);
  66. os_delayed_work_init(&sensor_work, _sensor_work_handler);
  67. return ret;
  68. }
  69. int sensor_poll(void)
  70. {
  71. return 0;
  72. }
  73. int sensor_get_data(sensor_dat_t *pdat)
  74. {
  75. return ring_buf_get(&sensor_rbuf, (uint8_t *)pdat, sizeof(sensor_dat_t));
  76. }
  77. int sensor_data_is_empty(void)
  78. {
  79. return ring_buf_is_empty(&sensor_rbuf);
  80. }