mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-10 16:55:58 +00:00
17 lines
292 B
C++
17 lines
292 B
C++
/**
|
|
* @brief Configuration for STM32F413xx family.
|
|
*/
|
|
#ifndef STA_STM32_MCU_STM32F413xx_HPP
|
|
#define STA_STM32_MCU_STM32F413xx_HPP
|
|
|
|
|
|
#ifndef STM32F413xx
|
|
# error "MCU config incompatible"
|
|
#endif // !STM32F413xx
|
|
|
|
|
|
#include <sta/stm32/mcu/common.hpp>
|
|
|
|
|
|
#endif // STA_STM32_MCU_STM32F413xx_HPP
|