rbuf_mem.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*******************************************************************************
  2. * @file rbuf_mem.h
  3. * @author MEMS Application Team
  4. * @version V1.0
  5. * @date 2020-08-12
  6. * @brief memory layout
  7. *******************************************************************************/
  8. #ifndef _RBUF_MEM_H
  9. #define _RBUF_MEM_H
  10. /******************************************************************************/
  11. //includes
  12. /******************************************************************************/
  13. #include <rbuf/rbuf_conf.h>
  14. #include <rbuf/rbuf_core.h>
  15. #include <rbuf/rbuf_pool.h>
  16. /******************************************************************************/
  17. //configs
  18. /******************************************************************************/
  19. /* Core Name */
  20. typedef enum core_e {
  21. CPU = 0,
  22. DSP,
  23. BT,
  24. SC,
  25. CORE_MAX
  26. } core_t;
  27. /******************************************************************************/
  28. //Memory Layout
  29. /******************************************************************************/
  30. // Rbuf Msg
  31. #define RB_ST_MSG (INTER_RAM_ADDR)
  32. #define RB_SZ_MSG (CORE_MAX * CORE_MAX * 2)
  33. // Rbuf Pool
  34. #define RB_ST_POOL (RB_ST_MSG + RB_SZ_MSG)
  35. #define RB_SZ_POOL (INTER_RAM_SIZE - RB_SZ_MSG)
  36. /******************************************************************************/
  37. //macros
  38. /******************************************************************************/
  39. /* RBUF Get */
  40. #define RB_GET_MSG(f,t) ((unsigned short*)RB_ST_MSG)[f*CORE_MAX+t]
  41. #define RB_GET_POOL ((rbuf_pool_t*)RB_ST_POOL)
  42. /******************************************************************************/
  43. //functions
  44. /******************************************************************************/
  45. #endif /* _RBUF_MEM_H */