mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-10 16:55:58 +00:00
18 lines
310 B
C++
18 lines
310 B
C++
/**
|
|
* @file
|
|
* @brief Common configuration for STM32 MCUs
|
|
*/
|
|
#ifndef STA_CORE_STM32_MCU_COMMON_HPP
|
|
#define STA_CORE_STM32_MCU_COMMON_HPP
|
|
|
|
|
|
// TODO: Are all STM32 MCUs little endian?
|
|
#define STA_MCU_LITTLE_ENDIAN
|
|
|
|
|
|
// Enable STM32 platform
|
|
#define STA_PLATFORM_STM32
|
|
|
|
|
|
#endif // STA_CORE_STM32_MCU_COMMON_HPP
|