Modified config.hpp + enabled UART + added startUpExtras

This commit is contained in:
dario
2023-08-30 22:14:39 +02:00
parent 7c46e30161
commit d7d80c2288
7 changed files with 77 additions and 11 deletions

View File

@@ -11,6 +11,19 @@
// Use the STM32F411 microprocessor.
#include <sta/devices/stm32/mcu/STM32F411xE.hpp>
// Doesn't really do too much right now. Has to be added for successful compilation.
#define STA_PRINTF_USE_STDLIB
// Enable debug serial output and assertions.
#define STA_ASSERT_FORCE
#define STA_DEBUGGING_ENABLED
// Activate the timer for microsecond delays.
// #define STA_STM32_DELAY_ENABLE
// #define STA_STM32_DELAY_US_TIM htim1
// Settings for the rtos-utils
#define STA_RTOS_SYSTEM_EVENTS_ENABLE
#define STA_RTOS_SYSTEM_WATCHDOG_ENABLE
#endif /* INC_STA_CONFIG_HPP_ */