mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-12 01:25:59 +00:00
17 lines
271 B
C++
17 lines
271 B
C++
/**
|
|
* @brief Configuration for STM32F413xG family.
|
|
*/
|
|
#ifndef STA_MCU_STM32F413xG_HPP
|
|
#define STA_MCU_STM32F413xG_HPP
|
|
|
|
|
|
#ifndef STM32F413xG
|
|
# error "MCU config incompatible"
|
|
#endif // !STM32F413xG
|
|
|
|
|
|
#include <sta/mcu/stm32base.hpp>
|
|
|
|
|
|
#endif // STA_MCU_STM32F413xG_HPP
|