Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
OSPIM.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef STM32H730_OSPIM_H
4#define STM32H730_OSPIM_H
5
7
8namespace imt {
9namespace base {
10namespace hal {
11namespace stm32h730 {
12namespace peripherals {
13
20class OSPIM {
21public:
22
26 enum class SourcePort {
31 };
32
36 struct PnCRStruct {
37 bool CLKEnable;
38 bool CLKSource;
39 bool DQSEnable;
40 bool DQSSource;
41 bool NCSEnable;
42 bool NCSSource;
43 bool IOLEnable;
45 bool IOHEnable;
47 };
48
52 struct InitStruct {
55 bool MUXEnable;
57 };
58
63 static bool init(InitStruct const& initStruct);
64
68 static void deInit();
69
70private:
71
75 OSPIM();
76
80 OSPIM(const OSPIM& other);
81
85 OSPIM& operator=(const OSPIM& other);
86};
87
88} // namespace peripherals
89} // namespace stm32h730
90} // namespace hal
91} // namespace base
92} // namespace imt
93
94#endif // #define STM32H730_OSPIM_H
(OSPIM) module register structure
Definition OSPIM.h:20
SourcePort
Enumeration for for the source of port n (n=1,2)
Definition OSPIM.h:26
@ OCTOSPI2_IOHigh
OCTOSPI2_IO[7:4] in non multiplexed mode / unused in multiplexed mode.
@ OCTOSPI2_IOLow
OCTOSPI2_IO[3:0] in non multiplexed mode / unused in multiplexed mode.
@ OCTOSPI1_IOHigh
OCTOSPI1_IO[7:4] in non multiplexed mode / multiplexed_IO[3:0] in multiplexed mode.
@ OCTOSPI1_IOLow
OCTOSPI1_IO[3:0] in non multiplexed mode / multiplexed_IO[3:0] in multiplexed mode.
static bool init(InitStruct const &initStruct)
Initializes the OSPIM peripheral according to the specified parameters in the OSPIM_InitStruct.
static void deInit()
Deinitializes the OSPIM peripheral according to the specified parameters in the OSPIM_InitStruct.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int8 uint8_t
Definition stdint.h:62
OSPIM struct used for init method.
Definition OSPIM.h:52
PnCRStruct Port2
Specifies the settings for port 2.
Definition OSPIM.h:54
bool MUXEnable
Specifies if the multiplexed mode is enabled.
Definition OSPIM.h:55
PnCRStruct Port1
Specifies the settings for port 1.
Definition OSPIM.h:53
uint8_t REQ2ACKTime
Specifies the REQ to ACK time.
Definition OSPIM.h:56
OSPIM struct used to set the PCR register for port n.
Definition OSPIM.h:36
bool DQSEnable
Specifies if the DQS should be enabled.
Definition OSPIM.h:39
bool CLKSource
Specifies the CLK/CLKn source. 0: OCTOSPI1_CLK/CLKn, 1: OCTOSPI2_CLK/CLKn.
Definition OSPIM.h:38
SourcePort IOHSource
Specifies the IO[7:4] source for Port n.
Definition OSPIM.h:46
SourcePort IOLSource
Specifies the IO[3:0] source for Port n.
Definition OSPIM.h:44
bool IOLEnable
Specifies if the IO[3:0] should be enabled.
Definition OSPIM.h:43
bool DQSSource
Specifies the DQS source. 0: OCTOSPI1_DQS, 1: OCTOSPI2_DQS.
Definition OSPIM.h:40
bool NCSSource
Specifies the nCS source. 0: OCTOSPI1_nCS, 1: OCTOSPI2_nCS.
Definition OSPIM.h:42
bool IOHEnable
Specifies if the IO[7:4] should be enabled.
Definition OSPIM.h:45
bool CLKEnable
Specifies if the CLK/CLKn should be enabled.
Definition OSPIM.h:37
bool NCSEnable
Specifies if the nCS should be enabled.
Definition OSPIM.h:41