You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
410 B
15 lines
410 B
|
3 weeks ago
|
/*
|
||
|
|
* 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_ */
|