rbuf_msg.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*******************************************************************************
  2. * @file rbuf_msg.h
  3. * @author MEMS Application Team
  4. * @version V1.0
  5. * @date 2020-10-15
  6. * @brief message for interaction RAM
  7. *******************************************************************************/
  8. #ifndef _RBUF_MSG_H
  9. #define _RBUF_MSG_H
  10. /******************************************************************************/
  11. //includes
  12. /******************************************************************************/
  13. #include <rbuf/rbuf_mem.h>
  14. #include <rbuf/rbuf_core.h>
  15. #include <rbuf/rbuf_pool.h>
  16. /******************************************************************************/
  17. //message define
  18. /******************************************************************************/
  19. typedef enum rb_msg {
  20. /* Message base for system */
  21. MSG_SYS_BASE = 0x100,
  22. /* Message base for main cpu */
  23. MSG_MAIN_BASE = 0x200,
  24. /* Message base for dsp */
  25. MSG_DSP_BASE = 0x300,
  26. /* Message base for bt cpu */
  27. MSG_BT_BASE = 0x400,
  28. MSG_BT_INIT,
  29. MSG_BT_HCI_BUF,
  30. MSG_BT_HCI_OK,
  31. MSG_BT_LOG_ON,
  32. MSG_BT_LOG_OFF,
  33. MSG_BT_MDM_RF_DEBUG,
  34. MSG_BT_GEN_P192_PK,
  35. MSG_BT_GEN_P192_DHKEY,
  36. MSG_BT_GEN_P256_PK,
  37. MSG_BT_GEN_P256_DHKEY,
  38. MSG_BT_TWS_INT,
  39. /* begin */
  40. MSG_BT_FIX_ROM,
  41. MSG_BT_TO_DSP,
  42. /* Message base for sensor cpu */
  43. MSG_SC_BASE = 0x500,
  44. } rbuf_msg_e;
  45. /******************************************************************************/
  46. //constants
  47. /******************************************************************************/
  48. // Rbuf Size for Message
  49. #define RB_MSG_SIZE (256)
  50. /******************************************************************************/
  51. //typedef
  52. /******************************************************************************/
  53. /* Message Data */
  54. typedef struct rbuf_msg {
  55. /* Message Type */
  56. unsigned short type;
  57. /* Message Flag */
  58. unsigned short flag;
  59. /* Message Data Union */
  60. union rbuf_msg_dat {
  61. /* Message 32bit Data */
  62. unsigned int w[4];
  63. /* Message 16bit Data */
  64. unsigned short h[8];
  65. /* Message 8bit Data */
  66. unsigned char b[16];
  67. } data;
  68. } rbuf_msg_t;
  69. /******************************************************************************/
  70. //macros
  71. /******************************************************************************/
  72. #define RB_MSG(f,t) RBUF_FR_OF(RB_GET_MSG(f,t))
  73. #define RB_MSG_INIT() rbuf_pool_init((char*)RB_ST_POOL, RB_SZ_POOL)
  74. #define RB_MSG_ALLOC(sz) rbuf_pool_alloc(RB_GET_POOL,sz,RBUF_MSG)
  75. #define RB_MSG_FREE(rbuf) rbuf_pool_free(rbuf)
  76. /******************************************************************************/
  77. //functions
  78. /******************************************************************************/
  79. #define rbuf_msg_create(fr,to,sz) RB_GET_MSG(fr,to)=RBUF_TO_OF(RB_MSG_ALLOC(sz))
  80. #define rbuf_msg_destroy(fr,to) rbuf_pool_free(RB_MSG(fr,to));RB_GET_MSG(fr,to)=0
  81. #define rbuf_msg_claim(fr,to,sz) rbuf_put_claim(RB_MSG(fr,to),sz,0)
  82. #define rbuf_msg_send(fr,to,sz) rbuf_put_finish(RB_MSG(fr,to),sz)
  83. #define rbuf_msg_recv(fr,to,sz,hdl,ctx) rbuf_get_hdl(RB_MSG(fr,to),sz,hdl,ctx)
  84. #define rbuf_msg_pending(fr,to) !rbuf_is_empty(RB_MSG(fr,to))
  85. #endif /* _RBUF_MSG_H */