Fix config for F413 family

This commit is contained in:
Henrik Stickann 2022-05-01 17:18:35 +02:00
parent c9a766232b
commit 16dbc1c81e
2 changed files with 16 additions and 16 deletions

View File

@ -1,16 +0,0 @@
/**
* @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

View File

@ -0,0 +1,16 @@
/**
* @brief Configuration for STM32F413xx family.
*/
#ifndef STA_MCU_STM32F413xx_HPP
#define STA_MCU_STM32F413xx_HPP
#ifndef STM32F413xx
# error "MCU config incompatible"
#endif // !STM32F413xx
#include <sta/mcu/stm32base.hpp>
#endif // STA_MCU_STM32F413xx_HPP