mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-12 01:25:59 +00:00
13 lines
226 B
C++
13 lines
226 B
C++
/**
|
|
* @brief Common configuration for STM32 MCUs
|
|
*/
|
|
#ifndef STA_MCU_STM32_BASE_HPP
|
|
#define STA_MCU_STM32_BASE_HPP
|
|
|
|
|
|
// TODO: Are all STM32 MCUs little endian?
|
|
#define STA_MCU_LITTLE_ENDIAN
|
|
|
|
|
|
#endif // STA_MCU_STM32_BASE_HPP
|