Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
MockI2S.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef MOCKI2S_H
4#define MOCKI2S_H
5
8#include <map>
9
10namespace imt {
11namespace base {
12namespace hal {
13namespace stm32f767 {
14namespace mock {
15
19class MockI2S {
20
21public:
22
26 explicit MockI2S() {
27 clear();
28 }
29
33 virtual ~MockI2S() {
34 clear();
35 }
36
37 void clear() {
38 m_isInitializeI2S.clear();
39 m_enable.clear();
40 m_enableDmaRx.clear();
41 m_enableDmaTx.clear();
42 }
43
45 m_isInitializeI2S[module] = true;
46 return true;
47 }
48
49 void enable(I2SModuleAddress const module, bool const doEnable) {
50 m_enable[module] = doEnable;
51 }
52
53 void enableDMA(I2SModuleAddress const module, bool const rxDmaEnable, bool const txDmaEnable) {
54 m_enableDmaRx[module] = rxDmaEnable;
55 m_enableDmaTx[module] = txDmaEnable;
56 }
57
58 // instance members
59 typedef std::map<I2SModuleAddress, bool> BOOL_MAP;
60
65
66private:
67
71 MockI2S(MockI2S const&);
72
76 MockI2S& operator=(MockI2S const&);
77};
78
79} // namespace mock
80} // namespace stm32f767
81} // namespace hal
82} // namespace base
83} // namespace imt
84
85#endif // MOCKI2S_H
I2S mock implementation.
Definition MockI2S.h:19
bool init(I2SModuleAddress const module, ::imt::base::hal::stm32f767::peripherals::I2S::InitStruct const &initConfig)
Definition MockI2S.h:44
void enableDMA(I2SModuleAddress const module, bool const rxDmaEnable, bool const txDmaEnable)
Definition MockI2S.h:53
void enable(I2SModuleAddress const module, bool const doEnable)
Definition MockI2S.h:49
std::map< I2SModuleAddress, bool > BOOL_MAP
Definition MockI2S.h:59
I2SModuleAddress
Enumeration of the available I2S modules identifiers.
This is a application specific file which is used to configure Imt.Base.Core.Math.
I2S configuration structure definitions.
Definition I2S.h:89