diff --git a/stm32l100c_discovery.h b/stm32l100c_discovery.h --- a/stm32l100c_discovery.h +++ b/stm32l100c_discovery.h @@ -1,32 +1,3 @@ -/** - ****************************************************************************** - * @file stm32l100c_discovery.h - * @author MCD Application Team - * @version V1.0.0 - * @date 29-July-2013 - * @brief This file contains definitions for STM32L100C-Discovery's Leds, push- - * buttons hardware resources. - ****************************************************************************** - * @attention - * - *

© COPYRIGHT 2013 STMicroelectronics

- * - * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: - * - * http://www.st.com/software_license_agreement_liberty_v2 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - ****************************************************************************** - */ - -/* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32L100C_DISCOVERY_H #define __STM32L100C_DISCOVERY_H @@ -34,24 +5,8 @@ extern "C" { #endif -/* Includes ------------------------------------------------------------------*/ #include "stm32l1xx.h" -/** @addtogroup Utilities - * @{ - */ - -/** @addtogroup STM32L100C_DISCOVERY - * @{ - */ - -/** @addtogroup STM32L100C_DISCOVERY_LOW_LEVEL - * @{ - */ - -/** @defgroup STM32L100C_DISCOVERY_LOW_LEVEL_Exported_Types - * @{ - */ typedef enum { LED3 = 0, @@ -69,17 +24,6 @@ typedef enum BUTTON_MODE_EXTI = 1 } ButtonMode_TypeDef; -/** - * @} - */ - -/** @defgroup STM32L100C_DISCOVERY_LOW_LEVEL_Exported_Constants - * @{ - */ - -/** @addtogroup STM32L100C_DISCOVERY_LOW_LEVEL_LED - * @{ - */ #define LEDn 2 #define LED3_PIN GPIO_Pin_9 @@ -89,18 +33,9 @@ typedef enum #define LED4_PIN GPIO_Pin_8 #define LED4_GPIO_PORT GPIOC #define LED4_GPIO_CLK RCC_AHBPeriph_GPIOC -/** - * @} - */ -/** @addtogroup SSTM32L100C_DISCOVERY_LOW_LEVEL_BUTTON - * @{ - */ #define BUTTONn 1 -/** - * @brief USER push-button - */ #define USER_BUTTON_PIN GPIO_Pin_0 #define USER_BUTTON_GPIO_PORT GPIOA #define USER_BUTTON_GPIO_CLK RCC_AHBPeriph_GPIOA @@ -109,21 +44,6 @@ typedef enum #define USER_BUTTON_EXTI_PIN_SOURCE EXTI_PinSource0 #define USER_BUTTON_EXTI_IRQn EXTI0_IRQn -/** - * @} - */ - - -/** @defgroup STM32L100C_DISCOVERY_LOW_LEVEL_Exported_Macros - * @{ - */ -/** - * @} - */ - -/** @defgroup STM32L100C_DISCOVERY_LOW_LEVEL_Exported_Functions - * @{ - */ void STM_EVAL_LEDInit(Led_TypeDef Led); void STM_EVAL_LEDOn(Led_TypeDef Led); void STM_EVAL_LEDOff(Led_TypeDef Led); @@ -131,25 +51,9 @@ void STM_EVAL_LEDToggle(Led_TypeDef Led) void STM_EVAL_PBInit(Button_TypeDef Button, ButtonMode_TypeDef Button_Mode); uint32_t STM_EVAL_PBGetState(Button_TypeDef Button); -/** - * @} - */ #ifdef __cplusplus } #endif #endif /* __STM32L100C_DISCOVERY_H */ -/** - * @} - */ - -/** - * @} - */ - -/** - * @} - */ - -/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/