From 395c02445887e82480b18270688a32a8b113a3ca Mon Sep 17 00:00:00 2001 From: Ross Schlaikjer Date: Thu, 11 Apr 2019 10:59:51 -0400 Subject: [PATCH] stm32f7: enable existing syscfg headers --- include/libopencm3/stm32/f7/syscfg.h | 36 ++++++++++++++++++++++++++++ include/libopencm3/stm32/syscfg.h | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 include/libopencm3/stm32/f7/syscfg.h diff --git a/include/libopencm3/stm32/f7/syscfg.h b/include/libopencm3/stm32/f7/syscfg.h new file mode 100644 index 00000000..48735ac9 --- /dev/null +++ b/include/libopencm3/stm32/f7/syscfg.h @@ -0,0 +1,36 @@ +/** @defgroup syscfg_defines SYSCFG Defines + * + * @ingroup STM32F7xx_defines + * + * @brief Defined Constants and Types for the STM32F7xx Sysconfig + * + * @version 1.0.0 + * + * @date 11 April 2019 + * + * LGPL License Terms @ref lgpl_license + * */ + +/* + * This file is part of the libopencm3 project. + * + * This library is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library. If not, see . + */ + +#ifndef LIBOPENCM3_SYSCFG_H +#define LIBOPENCM3_SYSCFG_H + +#include + +#endif diff --git a/include/libopencm3/stm32/syscfg.h b/include/libopencm3/stm32/syscfg.h index b5fc0e47..8e78c475 100644 --- a/include/libopencm3/stm32/syscfg.h +++ b/include/libopencm3/stm32/syscfg.h @@ -28,6 +28,8 @@ # include #elif defined(STM32F4) # include +#elif defined(STM32F7) +# include #elif defined(STM32L0) # include #elif defined(STM32L1)