From c9a766232bae9630e5a27c1c68f3df71561ed116 Mon Sep 17 00:00:00 2001 From: Henrik Stickann <4376396-Mithradir@users.noreply.gitlab.com> Date: Sun, 1 May 2022 17:15:40 +0200 Subject: [PATCH] Add MCU config for STM32F413xG family --- include/sta/mcu/STM32F413xG.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/sta/mcu/STM32F413xG.hpp diff --git a/include/sta/mcu/STM32F413xG.hpp b/include/sta/mcu/STM32F413xG.hpp new file mode 100644 index 0000000..a13752a --- /dev/null +++ b/include/sta/mcu/STM32F413xG.hpp @@ -0,0 +1,16 @@ +/** + * @brief Configuration for STM32F413xG family. + */ +#ifndef STA_MCU_STM32F413xG_HPP +#define STA_MCU_STM32F413xG_HPP + + +#ifndef STM32F413xG +# error "MCU config incompatible" +#endif // !STM32F413xG + + +#include + + +#endif // STA_MCU_STM32F413xG_HPP