Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
STM32F030_Mock.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef STM32F030MOCK_H
4#define STM32F030MOCK_H
5
12#include <vector>
13
14namespace imt {
15namespace base {
16namespace hal {
17namespace stm32f030 {
18namespace mock {
19
25public:
26
27 static uint32_t const DEFAULT_SYSCLK_FREQUENCY = 8000000;
28 static uint32_t const DEFAULT_HCLK_FREQUENCY = 8000000;
29 static uint32_t const DEFAULT_PCLK_FREQUENCY = 8000000;
30 static uint32_t const DEFAULT_ADCCLK_FREQUENCY = 4000000;
31
37
41 static void clear();
42
48 static void setGpioState(GPIO_Pin const pin, bool const value);
49
55 static bool getGpioState(GPIO_Pin const pin);
56
57 // SystemPeripherals_ADC.c:
67 std::vector<ADC_Channel> m_adc_ChannelConfigChannelParam;
68 std::vector<ADC_SampleTime> m_adc_ChannelConfigSampleTimeParam;
87 // SystemPeripherals_DMA.c:
91 // SystemPeripherals_EXTI.c:
94 std::vector<EXTI_Line> m_exti_ClearITPendingBitLineParam;
96 // SystemPeripherals_SysTick.c:
100 // SystemPeripherals_RCC.c:
112 // SystemPeripherals_GPIO.c:
115 std::vector<GPIO_Pin> m_gpio_Write_PinParam;
116 std::vector<bool> m_gpio_Write_ValueParam;
117 std::vector<GPIO_Pin> m_gpio_Read_PinParam;
120 std::vector<GPIO_ModuleAddress> m_gpio_SetBits_PortParam;
121 std::vector<uint16_t> m_gpio_SetBits_GpioPinParam;
123 std::vector<GPIO_ModuleAddress> m_gpio_ResetBits_PortParam;
124 std::vector<uint16_t> m_gpio_ResetBits_GpioPinParam;
125 // SystemPeripherals_NVIC.c:
129 // SystemPeripherals_TIM.c:
131 std::vector<TIM_ModuleAddress> m_tim_TimeBaseInitTimerModuleParam;
132 std::vector<TIM_TimeBaseInitStruct> m_tim_TimeBaseInitInitStructParam;
134 std::vector<TIM_Channel> m_tim_SetCompareValueChannelParam;
137 std::vector<TIM_ModuleAddress> m_tim_ClearPendingInterruptTimerModulelParam;
140 std::vector<TIM_ModuleAddress> m_tim_EnableTimerModuleParam;
141 std::vector<bool> m_tim_EnableDoEnableParam;
143 std::vector<TIM_ModuleAddress> m_tim_EnableInterruptTimerModuleParam;
144 std::vector<TIM_Irq> m_tim_EnableInterruptIrqParam;
147 std::vector<TIM_ModuleAddress> m_tim_SetAutoreloadRegisterTimerModulelParam;
149 // SystemPeripherals_IWDG.c:
151
152private:
153
158 explicit STM32F030Mock();
159
163 virtual ~STM32F030Mock();
164
169
173 STM32F030Mock& operator=(STM32F030Mock const&);
174
180 static uint16_t getGpioPinIndex(GPIO_Pin const pin);
181
182 static uint16_t const NUMBER_OF_GPIO_PORTS = 5;
183 static uint16_t const NUMBER_OF_GPIO_PINS_PER_PORTS = 16;
184
185 static STM32F030Mock* s_pSingle;
186
187 bool m_gpio_PinStates[NUMBER_OF_GPIO_PORTS * NUMBER_OF_GPIO_PINS_PER_PORTS];
188};
189
190} // namespace mock
191} // namespace stm32f030
192} // namespace hal
193} // namespace base
194} // namespace imt
195
196#endif // STM32F030MOCK_H
Mocking object which stores all relevant information for STM32F030 HAL.
static bool getGpioState(GPIO_Pin const pin)
Sets the mocked GPIO pin state.
std::vector< uint16_t > m_tim_SetCompareValueCaptureCompareValueParam
std::vector< TIM_Channel > m_tim_SetCompareValueChannelParam
std::vector< TIM_ModuleAddress > m_tim_EnableTimerModuleParam
std::vector< ADC_SampleTime > m_adc_ChannelConfigSampleTimeParam
std::vector< TIM_ModuleAddress > m_tim_TimeBaseInitTimerModuleParam
static STM32F030Mock & getSingle()
Returns the one and only instance.
std::vector< bool > m_systTick_EnableSystemTickInterruptParam
std::vector< GPIO_ModuleAddress > m_gpio_ResetBits_PortParam
std::vector< TIM_ModuleAddress > m_tim_EnableInterruptTimerModuleParam
std::vector< uint16_t > m_tim_SetAutoreloadRegisterNewValueParam
std::vector< TIM_IrqFlag > m_tim_ClearPendingInterruptIrqFlagParam
std::vector< EXTI_Line > m_exti_ClearITPendingBitLineParam
static void setGpioState(GPIO_Pin const pin, bool const value)
Sets the mocked GPIO pin state.
std::vector< TIM_TimeBaseInitStruct > m_tim_TimeBaseInitInitStructParam
std::vector< EXTI_Line > m_exti_GenerateSWInterruptLineParam
static void clear()
Clear the single.
std::vector< TIM_ModuleAddress > m_tim_ClearPendingInterruptTimerModulelParam
std::vector< GPIO_ModuleAddress > m_gpio_SetBits_PortParam
std::vector< TIM_ModuleAddress > m_tim_SetAutoreloadRegisterTimerModulelParam
std::vector< ADC_Channel > m_adc_ChannelConfigChannelParam
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int16 uint16_t
Definition stdint.h:63
unsigned __int32 uint32_t
Definition stdint.h:64
GPIO Pin structure definition (holds the port and the port-pin)