Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RccHelper.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef STM32F767_RCC_HELPER_H
4#define STM32F767_RCC_HELPER_H
5
6#include "../SystemMemoryMap.h"
7#include "RCC.h"
8
9namespace imt {
10namespace base {
11namespace hal {
12namespace stm32f767 {
13namespace peripherals {
14
18class RccHelper {
19public:
20
26 static constexpr RCC::PeripheralModule getModule(GPIOModuleAddress const gpioModule) {
28
29 switch (gpioModule) {
32 break;
35 break;
38 break;
41 break;
44 break;
47 break;
50 break;
53 break;
56 break;
59 break;
62 break;
63 default:
64 break;
65 }
66
67 return rccModule;
68 }
69
75 static constexpr RCC::PeripheralModule getModule(TIMModuleAddress const timModule) {
77
78 switch (timModule) {
81 break;
84 break;
87 break;
90 break;
93 break;
96 break;
99 break;
101 rccModule = RCC::PeripheralModule::TIM8;
102 break;
104 rccModule = RCC::PeripheralModule::TIM9;
105 break;
108 break;
111 break;
114 break;
117 break;
120 break;
121 default:
122 break;
123 }
124
125 return rccModule;
126 }
127
133 static constexpr RCC::PeripheralModule getModule(UsartModuleAddress const module) {
135
136 switch (module) {
139 break;
142 break;
145 break;
148 break;
151 break;
154 break;
157 break;
160 break;
161 default:
162 break;
163 }
164
165 return rccModule;
166 }
167
173 static constexpr RCC::PeripheralModule getModule(ADCModuleAddress const module) {
175
176 switch (module) {
178 rccModule = RCC::PeripheralModule::ADC1;
179 break;
181 rccModule = RCC::PeripheralModule::ADC2;
182 break;
184 rccModule = RCC::PeripheralModule::ADC3;
185 break;
186 default:
187 break;
188 }
189
190 return rccModule;
191 }
192
198 static constexpr RCC::PeripheralModule getModule(DACModuleAddress const module) {
200
201 switch (module) {
203 rccModule = RCC::PeripheralModule::DAC;
204 break;
205 default:
206 break;
207 }
208
209 return rccModule;
210 }
211
217 static constexpr RCC::PeripheralModule getModule(CANModuleAddress const module) {
219
220 switch (module) {
222 rccModule = RCC::PeripheralModule::CAN1;
223 break;
225 rccModule = RCC::PeripheralModule::CAN2;
226 break;
229 break;
230 default:
231 break;
232 }
233
234 return rccModule;
235 }
236
242 static constexpr RCC::PeripheralModule getModule(I2CModuleAddress const module) {
244
245 switch (module) {
247 rccModule = RCC::PeripheralModule::I2C1;
248 break;
250 rccModule = RCC::PeripheralModule::I2C2;
251 break;
253 rccModule = RCC::PeripheralModule::I2C3;
254 break;
256 rccModule = RCC::PeripheralModule::I2C4;
257 break;
258 default:
259 break;
260 }
261
262 return rccModule;
263 }
264
270 static constexpr RCC::PeripheralModule getModule(SPIModuleAddress const module) {
272
273 switch (module) {
275 rccModule = RCC::PeripheralModule::SPI1;
276 break;
278 rccModule = RCC::PeripheralModule::SPI2;
279 break;
281 rccModule = RCC::PeripheralModule::SPI3;
282 break;
284 rccModule = RCC::PeripheralModule::SPI4;
285 break;
287 rccModule = RCC::PeripheralModule::SPI5;
288 break;
290 rccModule = RCC::PeripheralModule::SPI6;
291 break;
292 default:
293 break;
294 }
295
296 return rccModule;
297 }
298
304 static constexpr RCC::PeripheralModule getModule(I2SModuleAddress const module) {
306
307 switch (module) {
309 rccModule = RCC::PeripheralModule::SPI1;
310 break;
312 rccModule = RCC::PeripheralModule::SPI2;
313 break;
315 rccModule = RCC::PeripheralModule::SPI3;
316 break;
317 default:
318 break;
319 }
320
321 return rccModule;
322 }
323
329 static constexpr RCC::PeripheralModule getModule(SDMMCModuleAddress const module) {
331
332 switch (module) {
335 break;
338 break;
339 default:
340 break;
341 }
342
343 return rccModule;
344 }
345
351 static constexpr RCC::PeripheralModule getModule(USBModuleAddress const module) {
353
354 switch (module) {
357 break;
360 break;
361 default:
362 break;
363 }
364
365 return rccModule;
366 }
367
368 // Special member functions
369 RccHelper() = delete;
370 ~RccHelper() = delete;
371 RccHelper(RccHelper const& other) = delete;
372 RccHelper(RccHelper const&& other) = delete;
373 RccHelper& operator=(RccHelper const& other) = delete;
374 RccHelper& operator=(RccHelper const&& other) = delete;
375};
376
377} // namespace peripherals
378} // namespace stm32f767
379} // namespace hal
380} // namespace base
381} // namespace imt
382
383#endif // STM32F767_RCC_HELPER_H
PeripheralModule
Enumeration of all avalibale peripheral modules.
Definition RCC.h:25
Helper functions for RCC enabling.
Definition RccHelper.h:18
static constexpr RCC::PeripheralModule getModule(SDMMCModuleAddress const module)
Converts SDMMCModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:329
static constexpr RCC::PeripheralModule getModule(SPIModuleAddress const module)
Converts SPIModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:270
static constexpr RCC::PeripheralModule getModule(I2CModuleAddress const module)
Converts ADCModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:242
static constexpr RCC::PeripheralModule getModule(USBModuleAddress const module)
Converts USBModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:351
RccHelper & operator=(RccHelper const &&other)=delete
static constexpr RCC::PeripheralModule getModule(TIMModuleAddress const timModule)
Converts TIMModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:75
static constexpr RCC::PeripheralModule getModule(UsartModuleAddress const module)
Converts UsartModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:133
static constexpr RCC::PeripheralModule getModule(I2SModuleAddress const module)
Converts I2SModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:304
static constexpr RCC::PeripheralModule getModule(ADCModuleAddress const module)
Converts ADCModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:173
RccHelper & operator=(RccHelper const &other)=delete
RccHelper(RccHelper const &&other)=delete
static constexpr RCC::PeripheralModule getModule(CANModuleAddress const module)
Converts CANModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:217
static constexpr RCC::PeripheralModule getModule(DACModuleAddress const module)
Converts DACModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:198
static constexpr RCC::PeripheralModule getModule(GPIOModuleAddress const gpioModule)
Converts GPIOModuleAddress to RCC::PeripheralModule.
Definition RccHelper.h:26
RccHelper(RccHelper const &other)=delete
CANModuleAddress
Enumeration of the available CAM modules on STM32F767.
GPIOModuleAddress
Enumeration of the available GPIO modules identifiers.
TIMModuleAddress
Enumeration of the available TIM modules identifiers.
SPIModuleAddress
Enumeration of the available SPI modules on STM32F767.
I2CModuleAddress
Enumeration of the available I2C modules identifiers.
USBModuleAddress
Enumeration of the available USB OTG modules on STM32F769.
SDMMCModuleAddress
Enumeration of the available SDMMC modules on STM32F769.
DACModuleAddress
Enumeration of the available DAC modules identifiers.
ADCModuleAddress
Enumeration of the available ADC modules identifiers.
I2SModuleAddress
Enumeration of the available I2S modules identifiers.
UsartModuleAddress
Enumeration of the available USART/UART modules on STM32F767.
This is a application specific file which is used to configure Imt.Base.Core.Math.