-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathflash_io_base.hpp
44 lines (41 loc) · 1.37 KB
/
flash_io_base.hpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pragma once
//=========================================================================//
/*! @file
@brief flash_io ベース・クラス
@author 平松邦仁 ([email protected])
@copyright Copyright (C) 2024 Kunihito Hiramatsu @n
Released under the MIT license @n
https://github.com/hirakuni45/RX/blob/master/LICENSE
*/
//=========================================================================//
#include <cstdint>
namespace device {
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief flash_io ベース・クラス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
struct flash_io_base {
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief エラー型
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
enum class ERROR : uint8_t {
NONE, ///< エラー無し
START, ///< 開始不良
CLOCK, ///< クロック設定不良
NOS, ///< 未サポート
ADDRESS, ///< アドレス不良
LENGTH, ///< 長さ不良
BANK, ///< バンク数不良
TIMEOUT, ///< タイムアウト
WRITE, ///< 書き込みエラー
LOCK, ///< Lock エラー
ST_ILGL, ///< ILGL ステータス検出
ST_ERS, ///< ERS ステータス検出
ST_PRG, ///< PRG ステータス検出
ST_BC, ///< BC ステータス検出
};
};
}