bt_app_core.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #ifndef __BT_APP_CORE_H__
  8. #define __BT_APP_CORE_H__
  9. #include "esp_log.h"
  10. #include "time.h"
  11. #include <stdint.h>
  12. #include <stdbool.h>
  13. #include <stdio.h>
  14. #include "Status.pb.h"
  15. #define BT_APP_CORE_TAG "BT_APP_CORE"
  16. #define BT_APP_SIG_WORK_DISPATCH (0x01)
  17. enum {
  18. BT_APP_EVT_STACK_UP = 0,
  19. };
  20. extern sys_AV_STATE bt_app_source_get_a2d_state();
  21. extern sys_MEDIA_STATE bt_app_source_get_media_state();
  22. /**
  23. * @brief handler for the dispatched work
  24. */
  25. typedef void (* bt_app_cb_t) (uint16_t event, void *param);
  26. /* message to be sent */
  27. typedef struct {
  28. uint16_t sig; /*!< signal to bt_app_task */
  29. uint16_t event; /*!< message event id */
  30. bt_app_cb_t cb; /*!< context switch callback */
  31. void *param; /*!< parameter area needs to be last */
  32. } bt_app_msg_t;
  33. /**
  34. * @brief parameter deep-copy function to be customized
  35. */
  36. typedef void (* bt_app_copy_cb_t) (bt_app_msg_t *msg, void *p_dest, void *p_src);
  37. /**
  38. * @brief callback for startup event
  39. */
  40. typedef void bt_av_hdl_stack_evt_t(uint16_t event, void *p_param);
  41. /**
  42. * @brief work dispatcher for the application task
  43. */
  44. bool bt_app_work_dispatch(bt_app_cb_t p_cback, uint16_t event, void *p_params, int param_len, bt_app_copy_cb_t p_copy_cback);
  45. void bt_app_task_start_up(bt_av_hdl_stack_evt_t* handler);
  46. void bt_app_task_shut_down(void);
  47. #endif /* __BT_APP_CORE_H__ */