Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
MockOSPIM.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef MOCKOSPIM_H
4#define MOCKOSPIM_H
5
8
9namespace imt {
10namespace base {
11namespace hal {
12namespace stm32h730 {
13namespace mock {
14
18class MockOSPIM {
19public:
20
21 explicit MockOSPIM() {
22 clear();
23 }
24
25 virtual ~MockOSPIM() {
26 clear();
27 }
28
29 void clear() {
30 }
31
33 return true;
34 }
35
36 void deInit() {
37 }
38
39private:
40
44 MockOSPIM(MockOSPIM const&);
45
49 MockOSPIM& operator=(MockOSPIM const&);
50};
51
52} // namespace mock
53} // namespace stm32h730
54} // namespace hal
55} // namespace base
56} // namespace imt
57
58#endif // #ifndef MOCKOSPIM_H
Mock implementation for the OSPIM module.
Definition MockOSPIM.h:18
bool init(imt::base::hal::stm32h730::peripherals::OSPIM::InitStruct const &initStruct)
Definition MockOSPIM.h:32
This is a application specific file which is used to configure Imt.Base.Core.Math.
OSPIM struct used for init method.
Definition OSPIM.h:52