-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextClock.h
More file actions
27 lines (20 loc) · 1.22 KB
/
extClock.h
File metadata and controls
27 lines (20 loc) · 1.22 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
/********************************************************************/
/* Description: 外部水晶発振モジュールの設定 */
/* File: extClock.h */
/* Date: 2024/07/19 */
/* Author: Takashi YOSHIOKA */
/********************************************************************/
/********************************************************************/
/* 多重インクルード防止 */
/********************************************************************/
#ifndef _EXTCLOCK_H_
#define _EXTCLOCK_H_
/********************************************************************/
/* ヘッダファイルのインクルード */
/********************************************************************/
#include <Arduino.h>
/********************************************************************/
/* 外部公開関数のプロトタイプ宣言 */
/********************************************************************/
void setup_clock(void);
#endif /* END _EXTCLOCK_H_ */