/* * bsp_slide_averager.h * * Created on: 2026年3月20日 * Author: L1ng the codeGod */ #ifndef BASE_INC_BSP_BSP_SLIDE_AVERAGER_H_ #define BASE_INC_BSP_BSP_SLIDE_AVERAGER_H_ void slide_averager_init(float buffer[], uint8_t *p_index, uint8_t *p_count); float slide_averager_calc(float buffer[], uint8_t *p_index, uint8_t *p_count, float new_data); #endif /* BASE_INC_BSP_BSP_SLIDE_AVERAGER_H_ */