-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathclock_profile.hpp
74 lines (64 loc) · 3.56 KB
/
clock_profile.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#pragma once
#ifndef NO_CLOCK_PROFILE
//=========================================================================//
/*! @file
@brief RX65N グループ・クロック。プロファイル @n
クロックジェネレータで発生させる周波数の定義
@author 平松邦仁 ([email protected])
@copyright Copyright (C) 2021, 2023 Kunihito Hiramatsu @n
Released under the MIT license @n
https://github.com/hirakuni45/RX/blob/master/LICENSE
*/
//=========================================================================//
#include <cstdint>
namespace device {
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief クロック・プロファイル・クラス @n
・PLL_BASE は、BASE の 0.5 倍単位 @n
・他は、PLL_BASE を基数とする整数除算値 @n
・選択出来ない値を指定すると、コンパイルエラーとなる @n
・詳細はハードウェアーマニュアル参照の事
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
class clock_profile {
public:
static constexpr uint32_t EXT_LIMIT = 24'000'000; ///< 外部クロック入力最大値
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief 発信器タイプ @n
HOCO を使う場合、BASE に周波数(16,18,20 MHz)を設定します。 @n
LOCO は、起動時のモードなので、設定する事は通常行わない。
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
enum class OSC_TYPE : uint8_t {
XTAL, ///< クリスタル接続
EXT, ///< 外部クロック入力
HOCO, ///< 内蔵高速オンチップオシレーター
LOCO, ///< 内蔵低速オンチップオシレーター (240KHz)
};
#if 1
static constexpr OSC_TYPE OSCT = OSC_TYPE::XTAL; ///< 発信器種別型
static constexpr bool TURN_SBC = false; ///< サブクロックを利用する場合「true」
static constexpr bool TURN_USB = true; ///< USB を使う場合「true」
static constexpr uint32_t BASE = 12'000'000; ///< 外部接続クリスタル
static constexpr uint32_t PLL_BASE = 240'000'000; ///< PLL ベースクロック(最大240MHz)
#else
static constexpr OSC_TYPE OSCT = OSC_TYPE::HOCO; ///< 発信器種別型
static constexpr bool TURN_SBC = false; ///< サブクロックを利用する場合「true」
static constexpr bool TURN_USB = false; ///< USB を使う場合「true」
static constexpr uint32_t BASE = 20'000'000; ///< 外部接続クリスタル
static constexpr uint32_t PLL_BASE = 240'000'000; ///< PLL ベースクロック(最大240MHz)
#endif
static constexpr uint32_t ICLK = 120'000'000; ///< ICLK 周波数(最大120MHz)
static constexpr uint32_t PCLKA = 120'000'000; ///< PCLKA 周波数(最大120MHz)
static constexpr uint32_t PCLKB = 60'000'000; ///< PCLKB 周波数(最大60MHz)
static constexpr uint32_t PCLKC = 60'000'000; ///< PCLKC 周波数(最大60MHz)
static constexpr uint32_t PCLKD = 60'000'000; ///< PCLKD 周波数(最大60MHz)
static constexpr uint32_t FCLK = 60'000'000; ///< FCLK 周波数(最大60MHz)
static constexpr uint32_t BCLK = 120'000'000; ///< BCLK 周波数(最大120MHz)
// static constexpr uint32_t DELAY_MS = ICLK / 1'000'000 / 4; ///< ソフトウェアー遅延における定数(1マイクロ秒)
static constexpr uint32_t DELAY_MS = ICLK / 3'116'883; ///< ソフトウェアー遅延における定数(1マイクロ秒)
};
}
#endif