12345678910111213141516171819202122232425 |
- /*******************************************************************************
- * @file rbuf_config.h
- * @author MEMS Application Team
- * @version V1.0
- * @date 2020-10-15
- * @brief ring buffer config for interaction RAM
- *******************************************************************************/
- #ifndef _RBUF_CONF_H
- #define _RBUF_CONF_H
- /******************************************************************************/
- //includes
- /******************************************************************************/
- #include <soc.h>
- /******************************************************************************/
- //configs
- /******************************************************************************/
- // Ring Buffer start Address
- #define RBUF_BASE (INTER_RAM_ADDR)
- #endif /* _RBUF_CONF_H */
|