-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmovingAverage.h
More file actions
28 lines (20 loc) · 1.25 KB
/
movingAverage.h
File metadata and controls
28 lines (20 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/********************************************************************/
/* Description: 移動平均値の算出 */
/* File: movingAverage.h */
/* Date: 2024/07/16 */
/* Author: Takashi YOSHIOKA */
/********************************************************************/
/********************************************************************/
/* 多重インクルード防止 */
/********************************************************************/
#ifndef _MOVINGAVERAGE_H_
#define _MOVINGAVERAGE_H_
/********************************************************************/
/* ヘッダファイルのインクルード */
/********************************************************************/
#include <Arduino.h>
/********************************************************************/
/* 外部公開関数のプロトタイプ宣言 */
/********************************************************************/
int16_t calcMovAve(int16_t bufArg[], uint16_t datNumArg);
#endif /* END _MOVINGAVERAGE_H_ */