/* * Configuration file for STA-Core. * * Created on: Aug 30, 2023 * Author: Dario */ #ifndef INC_STA_CONFIG_HPP_ #define INC_STA_CONFIG_HPP_ #define STA_STM32_ASEAG // This is a define that we are using our own PCB layout called ASEAG #include // Doesn't really do too much right now. Has to be added for successful compilation. #define STA_PRINTF_USE_STDLIB #define STA_MCU_LITTLE_ENDIAN #define STA_PLATFORM_STM32 // Enable debug serial output and assertions. #define STA_ASSERT_FORCE #define STA_DEBUGGING_ENABLED // Settings for the rtos-utils #define STA_RTOS_SYSTEM_EVENTS_ENABLE #define STA_TACOS_CAN_BUS_ENABLED // Enable CAN for sta core #define STA_CAN_BUS_ENABLE // Uses the default configuration for TACOS. #include #define STA_TACOS_NUM_STATES 3 #endif /* INC_STA_CONFIG_HPP_ */