Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_TYPES_H
4#define IMT_TYPES_H
5
6namespace imt {
7namespace base {
8namespace hal {
9namespace stm32f769 {
10
14struct Status {
15 enum Id {
16 Ok = 0x00U,
17 Error = 0x01U,
18 Busy = 0x02U,
19 Timeout = 0x03U,
20 };
21};
22
26struct Lock {
27 enum Id {
28 Unlocked = 0x00U,
29 Locked = 0x01U
30 };
31};
32
37 enum Id {
38 Disable = 0U,
39 Enable = 1U,
40 };
41};
42
47 enum Id {
48 Rising = 0U,
49 Falling = 1U
50 };
51};
52
53} // namespace stm32f769
54} // namespace hal
55} // namespace base
56} // namespace imt
57
58#endif // IMT_TYPES_H
This is a application specific file which is used to configure Imt.Base.Core.Math.
Functional State, can be used for registers with bit access.
Definition types.h:36
HAL Lock structures definition.
Definition types.h:26
HAL Status structures definition.
Definition types.h:14