STM32469I_EVAL BSP User Manual
|
This file contains definitions for STM32469I-EVAL's LEDs, push-buttons and COM ports hardware resources. More...
#include "stm32f4xx_hal.h"
Go to the source code of this file.
Defines | |
#define | LEDn ((uint8_t)4) |
#define | LEDx_GPIO_PORT GPIOK |
#define | LEDx_GPIO_CLK_ENABLE() __HAL_RCC_GPIOK_CLK_ENABLE() |
#define | LEDx_GPIO_CLK_DISABLE() __HAL_RCC_GPIOK_CLK_DISABLE() |
#define | LED1_PIN GPIO_PIN_3 |
#define | LED2_PIN GPIO_PIN_4 |
#define | LED3_PIN GPIO_PIN_5 |
#define | LED4_PIN GPIO_PIN_6 |
#define | MFX_IRQOUT_PIN GPIO_PIN_8 |
MFX_IRQOUt pin. | |
#define | MFX_IRQOUT_GPIO_PORT GPIOI |
#define | MFX_IRQOUT_GPIO_CLK_ENABLE() __HAL_RCC_GPIOI_CLK_ENABLE() |
#define | MFX_IRQOUT_GPIO_CLK_DISABLE() __HAL_RCC_GPIOI_CLK_DISABLE() |
#define | MFX_IRQOUT_EXTI_IRQn EXTI9_5_IRQn |
#define | MFX_IRQOUT_EXTI_IRQnHandler EXTI9_5_IRQHandler |
#define | BUTTONn ((uint8_t)3) |
#define | WAKEUP_BUTTON_PIN GPIO_PIN_0 |
Wakeup push-button. | |
#define | WAKEUP_BUTTON_GPIO_PORT GPIOA |
#define | WAKEUP_BUTTON_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE() |
#define | WAKEUP_BUTTON_GPIO_CLK_DISABLE() __HAL_RCC_GPIOA_CLK_DISABLE() |
#define | WAKEUP_BUTTON_EXTI_IRQn EXTI0_IRQn |
#define | TAMPER_BUTTON_PIN GPIO_PIN_13 |
Tamper push-button. | |
#define | TAMPER_BUTTON_GPIO_PORT GPIOC |
#define | TAMPER_BUTTON_GPIO_CLK_ENABLE() __HAL_RCC_GPIOC_CLK_ENABLE() |
#define | TAMPER_BUTTON_GPIO_CLK_DISABLE() __HAL_RCC_GPIOC_CLK_DISABLE() |
#define | TAMPER_BUTTON_EXTI_IRQn EXTI15_10_IRQn |
#define | KEY_BUTTON_PIN GPIO_PIN_13 |
Key push-button. | |
#define | KEY_BUTTON_GPIO_PORT GPIOC |
#define | KEY_BUTTON_GPIO_CLK_ENABLE() __HAL_RCC_GPIOC_CLK_ENABLE() |
#define | KEY_BUTTON_GPIO_CLK_DISABLE() __HAL_RCC_GPIOC_CLK_DISABLE() |
#define | KEY_BUTTON_EXTI_IRQn EXTI15_10_IRQn |
#define | BUTTONx_GPIO_CLK_ENABLE(__INDEX__) |
#define | BUTTONx_GPIO_CLK_DISABLE(__INDEX__) |
#define | COMn ((uint8_t)1) |
#define | EVAL_COM1 USART1 |
Definition for COM port1, connected to USART1. | |
#define | EVAL_COM1_CLK_ENABLE() __HAL_RCC_USART1_CLK_ENABLE() |
#define | EVAL_COM1_CLK_DISABLE() __HAL_RCC_USART1_CLK_DISABLE() |
#define | EVAL_COM1_TX_PIN GPIO_PIN_9 |
#define | EVAL_COM1_RX_PIN GPIO_PIN_10 |
#define | EVAL_COM1_TX_GPIO_PORT GPIOA |
#define | EVAL_COM1_RX_GPIO_PORT EVAL_COM1_TX_GPIO_PORT |
#define | EVAL_COM1_TX_AF GPIO_AF7_USART1 |
#define | EVAL_COM1_RX_AF EVAL_COM1_TX_AF |
#define | EVAL_COM1_TX_RX_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE() |
#define | EVAL_COM1_TX_RX_GPIO_CLK_DISABLE() __HAL_RCC_GPIOA_CLK_DISABLE() |
#define | EVAL_COM1_IRQn USART1_IRQn |
#define | EVAL_COMx_CLK_ENABLE(__INDEX__) do { if((__INDEX__) == 0) {EVAL_COM1_CLK_ENABLE();} } while(0) |
#define | EVAL_COMx_CLK_DISABLE(__INDEX__) (((__INDEX__) == 0) ? EVAL_COM1_CLK_DISABLE() : 0) |
#define | EVAL_COMx_TX_RX_GPIO_CLK_ENABLE(__INDEX__) do { if((__INDEX__) == 0) {EVAL_COM1_TX_RX_GPIO_CLK_ENABLE();} } while(0) |
#define | EVAL_COMx_TX_RX_GPIO_CLK_DISABLE(__INDEX__) (((__INDEX__) == 0) ? EVAL_COM1_TX_RX_GPIO_CLK_DISABLE() : 0) |
#define | TS_I2C_ADDRESS ((uint16_t)0x54) |
Joystick Pins definition. | |
#define | IO_I2C_ADDRESS ((uint16_t)0x84) |
MFX_I2C_ADDR 0. | |
#define | CAMERA_I2C_ADDRESS ((uint16_t)0x5A) |
Camera I2C Slave address. | |
#define | AUDIO_I2C_ADDRESS ((uint16_t)0x34) |
Audio I2C Slave address. | |
#define | EEPROM_I2C_ADDRESS_A01 ((uint16_t)0xA0) |
EEPROM I2C Slave address 1. | |
#define | EEPROM_I2C_ADDRESS_A02 ((uint16_t)0xA6) |
EEPROM I2C Slave address 2. | |
#define | EVAL_I2Cx I2C1 |
I2C clock speed configuration (in Hz) WARNING: Make sure that this define is not already declared in other files It can be used in parallel by other modules. | |
#define | EVAL_I2Cx_CLK_ENABLE() __HAL_RCC_I2C1_CLK_ENABLE() |
#define | EVAL_DMAx_CLK_ENABLE() __HAL_RCC_DMA1_CLK_ENABLE() |
#define | EVAL_I2Cx_SCL_SDA_GPIO_CLK_ENABLE() __HAL_RCC_GPIOB_CLK_ENABLE() |
#define | EVAL_I2Cx_FORCE_RESET() __HAL_RCC_I2C1_FORCE_RESET() |
#define | EVAL_I2Cx_RELEASE_RESET() __HAL_RCC_I2C1_RELEASE_RESET() |
#define | EVAL_I2Cx_SCL_PIN GPIO_PIN_8 |
Definition for I2Cx Pins. | |
#define | EVAL_I2Cx_SCL_SDA_GPIO_PORT GPIOB |
#define | EVAL_I2Cx_SCL_SDA_AF GPIO_AF4_I2C1 |
#define | EVAL_I2Cx_SDA_PIN GPIO_PIN_9 |
#define | EVAL_I2Cx_EV_IRQn I2C1_EV_IRQn |
Definition of I2C interrupt requests. | |
#define | EVAL_I2Cx_ER_IRQn I2C1_ER_IRQn |
Enumerations | |
enum | Led_TypeDef { LED1 = 0, LED_GREEN = LED1, LED2 = 1, LED_ORANGE = LED2, LED3 = 2, LED_RED = LED3, LED4 = 3, LED_BLUE = LED4 } |
Led_TypeDef STM32469I_EVAL board leds definitions. More... | |
enum | Button_TypeDef { BUTTON_WAKEUP = 0, BUTTON_TAMPER = 1, BUTTON_KEY = 2 } |
Button_TypeDef STM32469I_EVAL board Buttons definitions. More... | |
enum | ButtonMode_TypeDef { BUTTON_MODE_GPIO = 0, BUTTON_MODE_EXTI = 1 } |
ButtonMode_TypeDef STM32469I_EVAL board Buttons Modes definitions. More... | |
enum | COM_TypeDef { COM1 = 0, COM2 = 1 } |
COM_TypeDef STM32469I_EVAL board COM ports. More... | |
enum | EVAL_Status_TypeDef { EVAL_OK = 0, EVAL_ERROR = 1 } |
EVAL_Status_TypeDef STM32469I_EVAL board Eval Status return possible values. More... | |
Functions | |
uint32_t | BSP_GetVersion (void) |
This method returns the STM32469I EVAL BSP Driver revision. | |
void | BSP_LED_Init (Led_TypeDef Led) |
Configures LED GPIO. | |
void | BSP_LED_DeInit (Led_TypeDef Led) |
DeInit LEDs. | |
void | BSP_LED_On (Led_TypeDef Led) |
Turns selected LED On. | |
void | BSP_LED_Off (Led_TypeDef Led) |
Turns selected LED Off. | |
void | BSP_LED_Toggle (Led_TypeDef Led) |
Toggles the selected LED. | |
void | BSP_PB_Init (Button_TypeDef Button, ButtonMode_TypeDef Button_Mode) |
Configures button GPIO and EXTI Line. | |
void | BSP_PB_DeInit (Button_TypeDef Button) |
Push Button DeInit. | |
uint32_t | BSP_PB_GetState (Button_TypeDef Button) |
Returns the selected button state. | |
void | BSP_COM_Init (COM_TypeDef COM, UART_HandleTypeDef *husart) |
Configures COM port. | |
void | BSP_COM_DeInit (COM_TypeDef COM, UART_HandleTypeDef *huart) |
DeInit COM port. |
Detailed Description
This file contains definitions for STM32469I-EVAL's LEDs, push-buttons and COM ports hardware resources.
- Attention:
© COPYRIGHT(c) 2015 STMicroelectronics
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of STMicroelectronics nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
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 stm32469i_eval.h.
Generated on Tue Jan 12 2016 17:51:25 for STM32469I_EVAL BSP User Manual by
