rbuf_init.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*******************************************************************************
  2. * @file rbuf_init.c
  3. * @author MEMS Application Team
  4. * @version V1.0
  5. * @date 2020-10-15
  6. * @brief ring buffer init for interaction RAM
  7. *******************************************************************************/
  8. /******************************************************************************/
  9. //includes
  10. /******************************************************************************/
  11. #include <device.h>
  12. #include <rbuf/rbuf_msg.h>
  13. #include <rbuf/rbuf_pool.h>
  14. /******************************************************************************/
  15. //constants
  16. /******************************************************************************/
  17. /******************************************************************************/
  18. //typedef
  19. /******************************************************************************/
  20. /******************************************************************************/
  21. //variables
  22. /******************************************************************************/
  23. /******************************************************************************/
  24. //functions
  25. /******************************************************************************/
  26. static int my_pool_init(const struct device *arg)
  27. {
  28. ARG_UNUSED(arg);
  29. rbuf_pool_init((char*)RB_ST_POOL, RB_SZ_POOL);;
  30. return 0;
  31. }
  32. SYS_INIT(my_pool_init, PRE_KERNEL_1, 5);