![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
This file contains definitions for STM32F769I-Discovery LEDs, push-buttons hardware resources. More...
#include "stm32f7xx_hal.h"
Go to the source code of this file.
Enumerations | |
enum | Led_TypeDef { LED1 = 0, LED_RED = LED1, LED2 = 1, LED_GREEN = LED2 } |
Led_TypeDef STM32F769I_Discovery board leds definitions. More... | |
enum | Button_TypeDef { BUTTON_WAKEUP = 0 } |
Button_TypeDef STM32F769I_Discovery board Buttons definitions. More... | |
enum | ButtonMode_TypeDef { BUTTON_MODE_GPIO = 0, BUTTON_MODE_EXTI = 1 } |
ButtonMode_TypeDef STM32F769I_Discovery board Buttons Modes definitions. More... | |
enum | ButtonValue_TypeDef { PB_SET = 0, PB_RESET = !PB_SET } |
enum | DISCO_Status_TypeDef { DISCO_OK = 0, DISCO_ERROR = 1 } |
DISCO_Status_TypeDef STM32F769I_DISCO board Status return possible values. More... | |
Functions | |
uint32_t | BSP_GetVersion (void) |
This method returns the STM32F769I Discovery BSP Driver revision. More... | |
void | BSP_LED_Init (Led_TypeDef Led) |
Configures LED GPIO. More... | |
void | BSP_LED_DeInit (Led_TypeDef Led) |
DeInit LEDs. More... | |
void | BSP_LED_On (Led_TypeDef Led) |
Turns selected LED On. More... | |
void | BSP_LED_Off (Led_TypeDef Led) |
Turns selected LED Off. More... | |
void | BSP_LED_Toggle (Led_TypeDef Led) |
Toggles the selected LED. More... | |
void | BSP_PB_Init (Button_TypeDef Button, ButtonMode_TypeDef Button_Mode) |
Configures button GPIO and EXTI Line. More... | |
void | BSP_PB_DeInit (Button_TypeDef Button) |
Push Button DeInit. More... | |
uint32_t | BSP_PB_GetState (Button_TypeDef Button) |
Returns the selected button state. More... | |
This file contains definitions for STM32F769I-Discovery LEDs, push-buttons hardware resources.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file stm32f769i_discovery.h.