mFrame
載入中...
搜尋中...
無符合項目
CoreLdoDriveStrength.h
1
7#ifndef MCXA153_709DE4F5_0C33_4523_9AAC_BBB946937360
8#define MCXA153_709DE4F5_0C33_4523_9AAC_BBB946937360
9
10/* ***************************************************************************************
11 * Include
12 */
13#include "mframe.h"
14
15//----------------------------------------------------------------------------------------
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace mcxa153::chip::spc {
23 enum struct CoreLdoDriveStrength : unsigned char;
24
37 constexpr unsigned char operator+(CoreLdoDriveStrength e) {
38 return static_cast<unsigned char>(e);
39 }
40} // namespace mcxa153::chip::spc
41
42/* ***************************************************************************************
43 * Class/Interface/Struct/Enum
44 */
59enum struct mcxa153::chip::spc::CoreLdoDriveStrength : unsigned char {
60 LOW = 0x0U,
61 NORMAL = 0x1U
62};
63
64/* ***************************************************************************************
65 * End of file
66 */
67
68#endif /* MCXA153_709DE4F5_0C33_4523_9AAC_BBB946937360 */
Definition ActiveModeCoreLdoOption.h:24
constexpr unsigned char operator+(BandgapMode e)
Operator Overload - Convert BandgapMode enum to unsigned char.
Definition BandgapMode.h:36
CoreLdoDriveStrength
Core LDO Drive Strength Enumeration Enumeration for configuring the drive strength of the Core LDO (L...
Definition CoreLdoDriveStrength.h:59