Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
Loading...
Searching...
No Matches
mcuconf_board.h
Go to the documentation of this file.
1/*
2 ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
17#ifndef MCUCONF_H
18#define MCUCONF_H
19
20/*
21 * Enforce old versions of the chip
22 */
23#define STM32_ENFORCE_H7_REV_XY
24
25/*
26 * STM32H7xx drivers configuration.
27 * The following settings override the default settings present in
28 * the various device driver implementation headers.
29 * Note that the settings for each driver only have effect if the whole
30 * driver is enabled in halconf.h.
31 *
32 * IRQ priorities:
33 * 15...0 Lowest...Highest.
34 *
35 * DMA priorities:
36 * 0...3 Lowest...Highest.
37 */
38
39#define STM32H7xx_MCUCONF
40#define STM32H742_MCUCONF
41#define STM32H743_MCUCONF
42#define STM32H753_MCUCONF
43#define STM32H745_MCUCONF
44#define STM32H755_MCUCONF
45#define STM32H747_MCUCONF
46#define STM32H757_MCUCONF
47
48/*
49 * General settings.
50 */
51#define STM32_NO_INIT FALSE
52#define STM32_TARGET_CORE 1
53
54/*
55 * Memory attributes settings.
56 */
57#define STM32_NOCACHE_ENABLE TRUE
58#define STM32_NOCACHE_MPU_REGION MPU_REGION_6
59#define STM32_NOCACHE_RBAR 0x24000000U
60#define STM32_NOCACHE_RASR MPU_RASR_SIZE_64K
61
62/*
63 * PWR system settings.
64 * Reading STM32 Reference Manual is required, settings in PWR_CR3 are
65 * very critical.
66 * Register constants are taken from the ST header.
67 */
68#define STM32_VOS STM32_VOS_SCALE1
69#define STM32_PWR_CR1 (PWR_CR1_SVOS_1 | PWR_CR1_SVOS_0)
70#define STM32_PWR_CR2 (PWR_CR2_BREN)
71#define STM32_PWR_CR3 (PWR_CR3_LDOEN | PWR_CR3_USB33DEN)
72#define STM32_PWR_CPUCR 0
73
74/*
75 * Clock tree static settings.
76 * Reading STM32 Reference Manual is required.
77 */
78#define STM32_HSI_ENABLED FALSE
79#define STM32_LSI_ENABLED FALSE
80#define STM32_CSI_ENABLED FALSE
81#define STM32_HSI48_ENABLED TRUE
82#define STM32_HSE_ENABLED TRUE
83#define STM32_LSE_ENABLED FALSE
84#define STM32_HSIDIV STM32_HSIDIV_DIV1
85
86/*
87 * PLLs static settings.
88 * Reading STM32 Reference Manual is required.
89 */
90#define STM32_PLLSRC STM32_PLLSRC_HSE_CK
91#define STM32_PLLCFGR_MASK ~0
92#define STM32_PLL1_ENABLED TRUE
93#define STM32_PLL1_P_ENABLED TRUE
94#define STM32_PLL1_Q_ENABLED TRUE
95#define STM32_PLL1_R_ENABLED TRUE
96#define STM32_PLL1_DIVM_VALUE 1
97#define STM32_PLL1_DIVN_VALUE 100
98#define STM32_PLL1_FRACN_VALUE 0
99#define STM32_PLL1_DIVP_VALUE 2
100#define STM32_PLL1_DIVQ_VALUE 10
101#define STM32_PLL1_DIVR_VALUE 2
102#define STM32_PLL2_ENABLED TRUE
103#define STM32_PLL2_P_ENABLED TRUE
104#define STM32_PLL2_Q_ENABLED TRUE
105#define STM32_PLL2_R_ENABLED TRUE
106#define STM32_PLL2_DIVM_VALUE 1
107#define STM32_PLL2_DIVN_VALUE 45
108#define STM32_PLL2_FRACN_VALUE 0
109#define STM32_PLL2_DIVP_VALUE 2
110#define STM32_PLL2_DIVQ_VALUE 5
111#define STM32_PLL2_DIVR_VALUE 1
112#define STM32_PLL3_ENABLED TRUE
113#define STM32_PLL3_P_ENABLED TRUE
114#define STM32_PLL3_Q_ENABLED TRUE
115#define STM32_PLL3_R_ENABLED TRUE
116#define STM32_PLL3_DIVM_VALUE 2
117#define STM32_PLL3_DIVN_VALUE 72
118#define STM32_PLL3_FRACN_VALUE 0
119#define STM32_PLL3_DIVP_VALUE 2
120#define STM32_PLL3_DIVQ_VALUE 6
121#define STM32_PLL3_DIVR_VALUE 9
122
123/*
124 * Core clocks dynamic settings (can be changed at runtime).
125 * Reading STM32 Reference Manual is required.
126 */
127#define STM32_SW STM32_SW_PLL1_P_CK
128#define STM32_RTCSEL STM32_RTCSEL_NOCLK
129#define STM32_D1CPRE STM32_D1CPRE_DIV1
130#define STM32_D1HPRE STM32_D1HPRE_DIV2
131#define STM32_D1PPRE3 STM32_D1PPRE3_DIV2
132#define STM32_D2PPRE1 STM32_D2PPRE1_DIV2
133#define STM32_D2PPRE2 STM32_D2PPRE2_DIV2
134#define STM32_D3PPRE4 STM32_D3PPRE4_DIV2
135
136/*
137 * Peripherals clocks static settings.
138 * Reading STM32 Reference Manual is required.
139 */
140#define STM32_MCO1SEL STM32_MCO1SEL_HSE_CK
141#define STM32_MCO1PRE_VALUE 4
142#define STM32_MCO2SEL STM32_MCO2SEL_SYS_CK
143#define STM32_MCO2PRE_VALUE 4
144#define STM32_TIMPRE_ENABLE TRUE
145#define STM32_HRTIMSEL 0
146#define STM32_STOPKERWUCK 0
147#define STM32_STOPWUCK 0
148#define STM32_RTCPRE_VALUE 8
149#define STM32_CKPERSEL STM32_CKPERSEL_HSE_CK
150#define STM32_SDMMCSEL STM32_SDMMCSEL_PLL1_Q_CK
151#define STM32_QSPISEL STM32_QSPISEL_PLL2_R_CK
152#define STM32_FMCSEL STM32_FMCSEL_HCLK
153#define STM32_SWPSEL STM32_SWPSEL_PCLK1
154#define STM32_FDCANSEL STM32_FDCANSEL_PLL1_Q_CK
155#define STM32_DFSDM1SEL STM32_DFSDM1SEL_PCLK2
156#define STM32_SPDIFSEL STM32_SPDIFSEL_PLL1_Q_CK
157#define STM32_SPI45SEL STM32_SPI45SEL_PCLK2
158#define STM32_SPI123SEL STM32_SPI123SEL_PLL1_Q_CK
159#define STM32_SAI23SEL STM32_SAI23SEL_PLL1_Q_CK
160#define STM32_SAI1SEL STM32_SAI1SEL_PLL1_Q_CK
161#define STM32_LPTIM1SEL STM32_LPTIM1SEL_PCLK1
162#define STM32_CECSEL STM32_CECSEL_DISABLE
163#define STM32_USBSEL STM32_USBSEL_PLL3_Q_CK
164#define STM32_I2C123SEL STM32_I2C123SEL_PLL3_R_CK
165#define STM32_RNGSEL STM32_RNGSEL_HSI48_CK
166#define STM32_USART16SEL STM32_USART16SEL_PCLK2
167#define STM32_USART234578SEL STM32_USART234578SEL_PCLK1
168#define STM32_SPI6SEL STM32_SPI6SEL_PCLK4
169#define STM32_SAI4BSEL STM32_SAI4BSEL_PLL1_Q_CK
170#define STM32_SAI4ASEL STM32_SAI4ASEL_PLL1_Q_CK
171#define STM32_ADCSEL STM32_ADCSEL_PLL3_R_CK
172#define STM32_LPTIM345SEL STM32_LPTIM345SEL_PCLK4
173#define STM32_LPTIM2SEL STM32_LPTIM2SEL_PCLK4
174#define STM32_I2C4SEL STM32_I2C4SEL_PLL3_R_CK
175#define STM32_LPUART1SEL STM32_LPUART1SEL_PCLK4
176
177/*
178 * IRQ system settings.
179 */
180#define STM32_IRQ_EXTI0_PRIORITY 6
181#define STM32_IRQ_EXTI1_PRIORITY 6
182#define STM32_IRQ_EXTI2_PRIORITY 6
183#define STM32_IRQ_EXTI3_PRIORITY 6
184#define STM32_IRQ_EXTI4_PRIORITY 6
185#define STM32_IRQ_EXTI5_9_PRIORITY 6
186#define STM32_IRQ_EXTI10_15_PRIORITY 6
187#define STM32_IRQ_EXTI16_PRIORITY 6
188#define STM32_IRQ_EXTI17_PRIORITY 15 //#TODO: is this correct?
189#define STM32_IRQ_EXTI18_PRIORITY 6
190#define STM32_IRQ_EXTI19_PRIORITY 6
191#define STM32_IRQ_EXTI20_21_PRIORITY 6
192
193#define STM32_IRQ_FDCAN1_PRIORITY 10
194#define STM32_IRQ_FDCAN2_PRIORITY 10
195
196#define STM32_IRQ_MDMA_PRIORITY 9
197
198#define STM32_IRQ_QUADSPI1_PRIORITY 10
199
200#define STM32_IRQ_SDMMC1_PRIORITY 9
201#define STM32_IRQ_SDMMC2_PRIORITY 9
202
203#define STM32_IRQ_TIM1_UP_PRIORITY 7
204#define STM32_IRQ_TIM1_CC_PRIORITY 7
205#define STM32_IRQ_TIM2_PRIORITY 7
206#define STM32_IRQ_TIM3_PRIORITY 7
207#define STM32_IRQ_TIM4_PRIORITY 7
208#define STM32_IRQ_TIM5_PRIORITY 7
209#define STM32_IRQ_TIM6_PRIORITY 7
210#define STM32_IRQ_TIM7_PRIORITY 7
211#define STM32_IRQ_TIM8_BRK_TIM12_PRIORITY 7
212#define STM32_IRQ_TIM8_UP_TIM13_PRIORITY 7
213#define STM32_IRQ_TIM8_TRGCO_TIM14_PRIORITY 7
214#define STM32_IRQ_TIM8_CC_PRIORITY 7
215#define STM32_IRQ_TIM15_PRIORITY 7
216#define STM32_IRQ_TIM16_PRIORITY 7
217#define STM32_IRQ_TIM17_PRIORITY 7
218
219#define STM32_IRQ_USART1_PRIORITY 12
220#define STM32_IRQ_USART2_PRIORITY 12
221#define STM32_IRQ_USART3_PRIORITY 12
222#define STM32_IRQ_UART4_PRIORITY 12
223#define STM32_IRQ_UART5_PRIORITY 12
224#define STM32_IRQ_USART6_PRIORITY 12
225#define STM32_IRQ_UART7_PRIORITY 12
226#define STM32_IRQ_UART8_PRIORITY 12
227#define STM32_IRQ_LPUART1_PRIORITY 12
228
229/*
230 * ADC driver system settings.
231 */
232#define STM32_ADC_DUAL_MODE FALSE
233#define STM32_ADC_SAMPLES_SIZE 16
234#define STM32_ADC_USE_ADC12 TRUE
235#define STM32_ADC_USE_ADC3 TRUE
236#define STM32_ADC_ADC12_DMA_STREAM STM32_DMA_STREAM_ID_ANY
237#define STM32_ADC_ADC3_DMA_STREAM STM32_DMA_STREAM_ID_ANY
238#define STM32_ADC_ADC3_USE_BDMA TRUE
239#define STM32_ADC_ADC3_BDMA_STREAM STM32_BDMA_STREAM_ID_ANY
240#define STM32_ADC_ADC12_DMA_PRIORITY 2
241#define STM32_ADC_ADC3_DMA_PRIORITY 2
242#define STM32_ADC_ADC12_IRQ_PRIORITY 5
243#define STM32_ADC_ADC3_IRQ_PRIORITY 5
244#define STM32_ADC_ADC12_CLOCK_MODE ADC_CCR_CKMODE_ADCCK
245#define STM32_ADC_ADC3_CLOCK_MODE ADC_CCR_CKMODE_ADCCK
246
247/*
248 * CAN driver system settings.
249 */
250#if USE_CAN1
251#define STM32_CAN_USE_FDCAN1 TRUE
252#else
253#define STM32_CAN_USE_FDCAN1 FALSE
254#endif
255#if USE_CAN2
256#define STM32_CAN_USE_FDCAN2 TRUE
257#else
258#define STM32_CAN_USE_FDCAN2 FALSE
259#endif
260#define STM32_CAN_USE_FDCAN3 FALSE
261
262/*
263 * DAC driver system settings.
264 */
265#define STM32_DAC_DUAL_MODE FALSE
266#define STM32_DAC_USE_DAC1_CH1 FALSE
267#define STM32_DAC_USE_DAC1_CH2 FALSE
268#define STM32_DAC_DAC1_CH1_IRQ_PRIORITY 10
269#define STM32_DAC_DAC1_CH2_IRQ_PRIORITY 10
270#define STM32_DAC_DAC1_CH1_DMA_PRIORITY 2
271#define STM32_DAC_DAC1_CH2_DMA_PRIORITY 2
272#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
273#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID_ANY
274
275/*
276 * GPT driver system settings.
277 */
278#define STM32_GPT_USE_TIM1 FALSE
279#define STM32_GPT_USE_TIM2 FALSE
280#define STM32_GPT_USE_TIM3 FALSE
281#define STM32_GPT_USE_TIM4 FALSE
282#define STM32_GPT_USE_TIM5 FALSE
283#define STM32_GPT_USE_TIM6 FALSE
284#define STM32_GPT_USE_TIM7 FALSE
285#define STM32_GPT_USE_TIM8 FALSE
286#define STM32_GPT_USE_TIM12 FALSE
287#define STM32_GPT_USE_TIM13 FALSE
288#define STM32_GPT_USE_TIM14 FALSE
289#define STM32_GPT_USE_TIM15 FALSE
290#define STM32_GPT_USE_TIM16 FALSE
291#define STM32_GPT_USE_TIM17 FALSE
292
293/*
294 * I2C driver system settings.
295 */
296#if USE_I2C1
297#define STM32_I2C_USE_I2C1 TRUE
298#else
299#define STM32_I2C_USE_I2C1 FALSE
300#endif
301#if USE_I2C2
302#define STM32_I2C_USE_I2C2 TRUE
303#else
304#define STM32_I2C_USE_I2C2 FALSE
305#endif
306#if USE_I2C3
307#define STM32_I2C_USE_I2C3 TRUE
308#else
309#define STM32_I2C_USE_I2C3 FALSE
310#endif
311#if USE_I2C4
312#define STM32_I2C_USE_I2C4 TRUE
313#else
314#define STM32_I2C_USE_I2C4 FALSE
315#endif
316#define STM32_I2C_ISR_LIMIT 6
317#define STM32_I2C_BUSY_TIMEOUT 0
318#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
319#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
320#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
321#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
322#define STM32_I2C_I2C3_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
323#define STM32_I2C_I2C3_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
324#define STM32_I2C_I2C4_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
325#define STM32_I2C_I2C4_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
326#define STM32_I2C_I2C4_RX_BDMA_STREAM 1
327#define STM32_I2C_I2C4_TX_BDMA_STREAM 2
328#define STM32_I2C_I2C1_IRQ_PRIORITY 5
329#define STM32_I2C_I2C2_IRQ_PRIORITY 5
330#define STM32_I2C_I2C3_IRQ_PRIORITY 5
331#define STM32_I2C_I2C4_IRQ_PRIORITY 5
332#define STM32_I2C_I2C1_DMA_PRIORITY 3
333#define STM32_I2C_I2C2_DMA_PRIORITY 3
334#define STM32_I2C_I2C3_DMA_PRIORITY 3
335#define STM32_I2C_I2C4_DMA_PRIORITY 3
336#define STM32_I2C_DMA_ERROR_HOOK(i2cp) osalSysHalt("DMA failure")
337
338/*
339 * ICU driver system settings.
340 */
341#define STM32_ICU_USE_TIM1 FALSE
342#define STM32_ICU_USE_TIM2 FALSE
343#define STM32_ICU_USE_TIM3 FALSE
344#define STM32_ICU_USE_TIM4 FALSE
345#define STM32_ICU_USE_TIM5 FALSE
346#define STM32_ICU_USE_TIM8 FALSE
347#define STM32_ICU_USE_TIM12 FALSE
348#define STM32_ICU_USE_TIM13 FALSE
349#define STM32_ICU_USE_TIM14 FALSE
350#define STM32_ICU_USE_TIM15 FALSE
351#define STM32_ICU_USE_TIM16 FALSE
352#define STM32_ICU_USE_TIM17 FALSE
353
354/*
355 * MAC driver system settings.
356 */
357#define STM32_MAC_TRANSMIT_BUFFERS 2
358#define STM32_MAC_RECEIVE_BUFFERS 4
359#define STM32_MAC_BUFFERS_SIZE 1522
360#define STM32_MAC_PHY_TIMEOUT 100
361#define STM32_MAC_ETH1_CHANGE_PHY_STATE TRUE
362#define STM32_MAC_ETH1_IRQ_PRIORITY 13
363#define STM32_MAC_IP_CHECKSUM_OFFLOAD 0
364
365/*
366 * PWM driver system settings.
367 */
368#define STM32_PWM_USE_ADVANCED FALSE
369#define STM32_PWM_USE_TIM1 TRUE // LED tim
370#define STM32_PWM_USE_TIM2 FALSE
371#ifndef STM32_PWM_USE_TIM3
372#define STM32_PWM_USE_TIM3 TRUE // servo 1-2
373#endif
374#ifndef STM32_PWM_USE_TIM4
375#define STM32_PWM_USE_TIM4 TRUE // servo 7-8-9-10
376#endif
377#ifndef STM32_PWM_USE_TIM5
378#define STM32_PWM_USE_TIM5 TRUE // servo 3-4-5-6
379#endif
380#define STM32_PWM_USE_TIM8 FALSE
381#define STM32_PWM_USE_TIM9 FALSE
382#define STM32_PWM_USE_TIM10 FALSE
383#define STM32_PWM_USE_TIM11 FALSE
384#define STM32_PWM_USE_TIM12 FALSE
385#define STM32_PWM_USE_TIM13 FALSE
386#define STM32_PWM_USE_TIM14 FALSE
387#ifndef STM32_PWM_USE_TIM15
388#define STM32_PWM_USE_TIM15 FALSE // enable for servo 11-12
389#endif
390#define STM32_PWM_USE_TIM16 FALSE
391#define STM32_PWM_USE_TIM17 FALSE
392
393// TODO DMA UP for Dshot ?
394
395/*
396 * RTC driver system settings.
397 */
398#define STM32_RTC_PRESA_VALUE 32
399#define STM32_RTC_PRESS_VALUE 1024
400#define STM32_RTC_CR_INIT 0
401#define STM32_RTC_TAMPCR_INIT 0
402
403/*
404 * SDC driver system settings.
405 */
406#define STM32_SDC_USE_SDMMC1 TRUE
407#define STM32_SDC_USE_SDMMC2 FALSE
408#define STM32_SDC_SDMMC_UNALIGNED_SUPPORT TRUE
409#define STM32_SDC_SDMMC_WRITE_TIMEOUT 6000000
410#define STM32_SDC_SDMMC_READ_TIMEOUT 6000000
411#define STM32_SDC_SDMMC_CLOCK_DELAY 20
412#define STM32_SDC_SDMMC_PWRSAV TRUE
413#define STM32_SDC_FORCE_25MHZ TRUE
414
415/*
416 * SERIAL driver system settings.
417 */
418#if USE_UART1
419#define STM32_SERIAL_USE_USART1 TRUE
420#else
421#define STM32_SERIAL_USE_USART1 FALSE
422#endif
423#if USE_UART2
424#define STM32_SERIAL_USE_USART2 TRUE
425#else
426#define STM32_SERIAL_USE_USART2 FALSE
427#endif
428#if USE_UART3
429#define STM32_SERIAL_USE_USART3 TRUE
430#else
431#define STM32_SERIAL_USE_USART3 FALSE
432#endif
433#if USE_UART4
434#define STM32_SERIAL_USE_UART4 TRUE
435#else
436#define STM32_SERIAL_USE_UART4 FALSE
437#endif
438#if USE_UART5
439#define STM32_SERIAL_USE_UART5 TRUE
440#else
441#define STM32_SERIAL_USE_UART5 FALSE
442#endif
443#if USE_UART6
444#define STM32_SERIAL_USE_USART6 TRUE
445#else
446#define STM32_SERIAL_USE_USART6 FALSE
447#endif
448#if USE_UART7
449#define STM32_SERIAL_USE_UART7 TRUE
450#else
451#define STM32_SERIAL_USE_UART7 FALSE
452#endif
453#if USE_UART8
454#define STM32_SERIAL_USE_UART8 TRUE
455#else
456#define STM32_SERIAL_USE_UART8 FALSE
457#endif
458#define STM32_SERIAL_USE_LPUART1 FALSE
459
460/*
461 * SPI driver system settings.
462 */
463#if USE_SPI1
464#define STM32_SPI_USE_SPI1 TRUE
465#else
466#define STM32_SPI_USE_SPI1 FALSE
467#endif
468#if USE_SPI2
469#define STM32_SPI_USE_SPI2 TRUE
470#else
471#define STM32_SPI_USE_SPI2 FALSE
472#endif
473#if USE_SPI3
474#define STM32_SPI_USE_SPI3 TRUE
475#else
476#define STM32_SPI_USE_SPI3 FALSE
477#endif
478#if USE_SPI4
479#define STM32_SPI_USE_SPI4 TRUE
480#else
481#define STM32_SPI_USE_SPI4 FALSE
482#endif
483#define STM32_SPI_USE_SPI5 FALSE
484#define STM32_SPI_USE_SPI6 FALSE
485#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
486#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
487#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
488#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
489#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
490#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
491#define STM32_SPI_SPI4_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
492#define STM32_SPI_SPI4_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
493#define STM32_SPI_SPI5_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
494#define STM32_SPI_SPI5_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
495#define STM32_SPI_SPI6_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
496#define STM32_SPI_SPI6_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
497#define STM32_SPI_SPI1_DMA_PRIORITY 1
498#define STM32_SPI_SPI2_DMA_PRIORITY 1
499#define STM32_SPI_SPI3_DMA_PRIORITY 1
500#define STM32_SPI_SPI4_DMA_PRIORITY 1
501#define STM32_SPI_SPI5_DMA_PRIORITY 1
502#define STM32_SPI_SPI6_DMA_PRIORITY 1
503#define STM32_SPI_SPI1_IRQ_PRIORITY 10
504#define STM32_SPI_SPI2_IRQ_PRIORITY 10
505#define STM32_SPI_SPI3_IRQ_PRIORITY 10
506#define STM32_SPI_SPI4_IRQ_PRIORITY 10
507#define STM32_SPI_SPI5_IRQ_PRIORITY 10
508#define STM32_SPI_SPI6_IRQ_PRIORITY 10
509#define STM32_SPI_DMA_ERROR_HOOK(spip) osalSysHalt("DMA failure")
510
511/*
512 * ST driver system settings.
513 */
514#define STM32_ST_IRQ_PRIORITY 8
515#ifndef STM32_ST_USE_TIMER
516#define STM32_ST_USE_TIMER 5
517#endif
518
519/*
520 * TRNG driver system settings.
521 */
522#define STM32_TRNG_USE_RNG1 FALSE
523
524/*
525 * UART driver system settings.
526 */
527#define STM32_UART_USE_USART1 FALSE
528#define STM32_UART_USE_USART2 FALSE
529#define STM32_UART_USE_USART3 FALSE
530#define STM32_UART_USE_UART4 FALSE
531#define STM32_UART_USE_UART5 FALSE
532#define STM32_UART_USE_USART6 FALSE
533#define STM32_UART_USE_UART7 FALSE
534#define STM32_UART_USE_UART8 FALSE
535#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
536#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
537#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
538#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
539#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
540#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
541#define STM32_UART_UART4_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
542#define STM32_UART_UART4_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
543#define STM32_UART_UART5_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
544#define STM32_UART_UART5_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
545#define STM32_UART_USART6_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
546#define STM32_UART_USART6_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
547#define STM32_UART_UART7_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
548#define STM32_UART_UART7_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
549#define STM32_UART_UART8_RX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
550#define STM32_UART_UART8_TX_DMA_STREAM STM32_DMA_STREAM_ID_ANY
551#define STM32_UART_USART1_DMA_PRIORITY 1
552#define STM32_UART_USART2_DMA_PRIORITY 0
553#define STM32_UART_USART3_DMA_PRIORITY 0
554#define STM32_UART_UART4_DMA_PRIORITY 0
555#define STM32_UART_UART5_DMA_PRIORITY 0
556#define STM32_UART_USART6_DMA_PRIORITY 0
557#define STM32_UART_UART7_DMA_PRIORITY 0
558#define STM32_UART_UART8_DMA_PRIORITY 0
559#define STM32_UART_DMA_ERROR_HOOK(uartp) osalSysHalt("DMA failure")
560
561/*
562 * USB driver system settings.
563 */
564#define STM32_USB_USE_OTG1 TRUE // FS, DFU_BOOT
565#define STM32_USB_USE_OTG2 FALSE // HS
566#define STM32_USB_OTG1_IRQ_PRIORITY 14
567#define STM32_USB_OTG2_IRQ_PRIORITY 14
568#define STM32_USB_OTG1_RX_FIFO_SIZE 512
569#define STM32_USB_OTG2_RX_FIFO_SIZE 512
570#define STM32_USB_HOST_WAKEUP_DURATION 2
571
572/*
573 * WDG driver system settings.
574 */
575#define STM32_WDG_USE_IWDG FALSE
576
577/*
578 * WSPI driver system settings.
579 */
580#define STM32_WSPI_USE_QUADSPI1 FALSE
581#define STM32_WSPI_QUADSPI1_PRESCALER_VALUE ((STM32_QSPICLK / HAL_QSPI1_CLK) - 1)
582#define STM32_WSPI_QUADSPI1_MDMA_CHANNEL STM32_MDMA_CHANNEL_ID_ANY
583#define STM32_WSPI_QUADSPI1_MDMA_PRIORITY 1
584#define STM32_WSPI_MDMA_ERROR_HOOK(wspip) osalSysHalt("MDMA failure")
585
586/*
587 sdlog message buffer and queue configuration
588 */
589#define SDLOG_QUEUE_BUCKETS 1024
590#define SDLOG_MAX_MESSAGE_LEN 300
591#define SDLOG_NUM_FILES 2
592#define SDLOG_ALL_BUFFERS_SIZE (SDLOG_NUM_FILES*16*1024)
593
594#endif /* MCUCONF_H */