-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontrolFunction.h
More file actions
30 lines (22 loc) · 1.28 KB
/
controlFunction.h
File metadata and controls
30 lines (22 loc) · 1.28 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
29
30
/********************************************************************/
/* Description: 定時実行される制御演算部の記述 */
/* File: controlFunction.h */
/* Date: 2024/07/02 */
/* Author: Takashi YOSHIOKA */
/********************************************************************/
/********************************************************************/
/* 多重インクルード防止 */
/********************************************************************/
#ifndef _CONTROLFUNCTION_H_
#define _CONTROLFUNCTION_H_
/********************************************************************/
/* ヘッダファイルのインクルード */
/********************************************************************/
#include <Arduino.h>
/********************************************************************/
/* 外部公開関数のプロトタイプ宣言 */
/********************************************************************/
void carrier_valley_scan(void);
void asr_scan(void);
void sequence_scan(void);
#endif /* END _CONTROLFUNCTION_H_ */