We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb4726 commit 02c5bdcCopy full SHA for 02c5bdc
system/STM32U3xx/stm32u3xx_hal_conf_default.h
@@ -183,10 +183,18 @@ extern "C" {
183
/**
184
* @brief This is the HAL system configuration section
185
*/
186
+#if !defined (VDD_VALUE)
187
#define VDD_VALUE 3300UL /*!< Value of VDD in mv */
188
+#endif /* VDD_VALUE */
189
+#if !defined (TICK_INT_PRIORITY)
190
#define TICK_INT_PRIORITY ((1UL<<__NVIC_PRIO_BITS) - 1UL) /*!< tick interrupt priority (lowest by default) */
191
+#endif /* TICK_INT_PRIORITY */
192
+#if !defined (USE_RTOS)
193
#define USE_RTOS 0U
194
+#endif /* USE_RTOS */
195
+#if !defined (PREFETCH_ENABLE)
196
#define PREFETCH_ENABLE 1U /*!< Enable prefetch */
197
+#endif /* PREFETCH_ENABLE */
198
199
/* ########################## Assert Selection ############################## */
200
0 commit comments