mirror of https://gitee.com/ptower/pmu.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
5.1 KiB
148 lines
5.1 KiB
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef PY32F030_START_KIT_H
|
|
#define PY32F030_START_KIT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "py32f0xx_hal.h"
|
|
|
|
/** @addtogroup BSP
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup py32f0xx_Start_Kit
|
|
* @brief This section contains the exported types, contants and functions
|
|
* required to use the Nucleo 32 board.
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup py32f0xx_Start_Kit_Exported_Types Exported Types
|
|
* @{
|
|
*/
|
|
typedef enum
|
|
{
|
|
LED4 = 0,
|
|
LED_GREEN = LED4
|
|
} Led_TypeDef;
|
|
|
|
typedef enum
|
|
{
|
|
BUTTON_USER = 0,
|
|
/* Alias */
|
|
BUTTON_KEY = BUTTON_USER
|
|
} Button_TypeDef;
|
|
|
|
typedef enum
|
|
{
|
|
BUTTON_MODE_GPIO = 0,
|
|
BUTTON_MODE_EXTI = 1
|
|
} ButtonMode_TypeDef;
|
|
|
|
#define LEDn 1
|
|
|
|
#define LED4_PIN GPIO_PIN_4
|
|
#define LED4_GPIO_PORT GPIOA
|
|
#define LED4_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
|
#define LED4_GPIO_CLK_DISABLE() __HAL_RCC_GPIOA_CLK_DISABLE()
|
|
|
|
#define LEDx_GPIO_CLK_ENABLE(__INDEX__) do {LED4_GPIO_CLK_ENABLE(); } while(0U)
|
|
#define LEDx_GPIO_CLK_DISABLE(__INDEX__) LED4_GPIO_CLK_DISABLE())
|
|
|
|
#define BUTTONn 1
|
|
|
|
/**
|
|
* @brief User push-button
|
|
*/
|
|
#define USER_BUTTON_PIN GPIO_PIN_12
|
|
#define USER_BUTTON_GPIO_PORT GPIOA
|
|
#define USER_BUTTON_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
|
#define USER_BUTTON_GPIO_CLK_DISABLE() __HAL_RCC_GPIOA_CLK_DISABLE()
|
|
#define USER_BUTTON_EXTI_IRQn EXTI4_15_IRQn
|
|
|
|
/* Aliases */
|
|
#define KEY_BUTTON_PIN USER_BUTTON_PIN
|
|
#define KEY_BUTTON_GPIO_PORT USER_BUTTON_GPIO_PORT
|
|
#define KEY_BUTTON_GPIO_CLK_ENABLE() USER_BUTTON_GPIO_CLK_ENABLE()
|
|
#define KEY_BUTTON_GPIO_CLK_DISABLE() USER_BUTTON_GPIO_CLK_DISABLE()
|
|
#define KEY_BUTTON_EXTI_IRQn USER_BUTTON_EXTI_IRQn
|
|
|
|
#define BUTTONx_GPIO_CLK_ENABLE(__INDEX__) do { if((__INDEX__) == 0) USER_BUTTON_GPIO_CLK_ENABLE();} while(0)
|
|
#define BUTTONx_GPIO_CLK_DISABLE(__INDEX__) (((__INDEX__) == 0) ? USER_BUTTON_GPIO_CLK_DISABLE() : 0)
|
|
|
|
|
|
#ifdef HAL_UART_MODULE_ENABLED
|
|
//debug printf redirect config
|
|
#define DEBUG_USART_BAUDRATE 115200
|
|
|
|
#define DEBUG_USART USART2
|
|
#define DEBUG_USART_CLK_ENABLE() do { \
|
|
__IO uint32_t tmpreg = 0x00U; \
|
|
SET_BIT(RCC->APBENR1, RCC_APBENR1_USART2EN);\
|
|
/* Delay after an RCC peripheral clock enabling */ \
|
|
tmpreg = READ_BIT(RCC->APBENR1, RCC_APBENR1_USART2EN);\
|
|
UNUSED(tmpreg); \
|
|
} while(0U)
|
|
|
|
#define __GPIOA_CLK_ENABLE() do { \
|
|
__IO uint32_t tmpreg = 0x00U; \
|
|
SET_BIT(RCC->IOPENR, RCC_IOPENR_GPIOAEN);\
|
|
/* Delay after an RCC peripheral clock enabling */ \
|
|
tmpreg = READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOAEN);\
|
|
UNUSED(tmpreg); \
|
|
} while(0U)
|
|
|
|
#define DEBUG_USART_RX_GPIO_PORT GPIOA
|
|
#define DEBUG_USART_RX_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
|
#define DEBUG_USART_RX_PIN GPIO_PIN_3
|
|
#define DEBUG_USART_RX_AF GPIO_AF4_USART2
|
|
|
|
#define DEBUG_USART_TX_GPIO_PORT GPIOA
|
|
#define DEBUG_USART_TX_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
|
#define DEBUG_USART_TX_PIN GPIO_PIN_2
|
|
#define DEBUG_USART_TX_AF GPIO_AF4_USART2
|
|
|
|
#define DEBUG_USART_IRQHandler USART2_IRQHandler
|
|
#define DEBUG_USART_IRQ USART2_IRQn
|
|
#endif
|
|
/************************************************************/
|
|
|
|
#ifdef HAL_UART_MODULE_ENABLED
|
|
extern UART_HandleTypeDef DebugUartHandle;
|
|
#endif
|
|
|
|
/** @defgroup Functions
|
|
* @{
|
|
*/
|
|
uint32_t BSP_GetVersion(void);
|
|
|
|
void BSP_LED_Init(Led_TypeDef Led);
|
|
void BSP_LED_DeInit(Led_TypeDef Led);
|
|
void BSP_LED_On(Led_TypeDef Led);
|
|
void BSP_LED_Off(Led_TypeDef Led);
|
|
void BSP_LED_Toggle(Led_TypeDef Led);
|
|
|
|
void BSP_PB_Init(Button_TypeDef Button, ButtonMode_TypeDef ButtonMode);
|
|
void BSP_PB_DeInit(Button_TypeDef Button);
|
|
uint32_t BSP_PB_GetState(Button_TypeDef Button);
|
|
|
|
void BSP_USART_Config(void);
|
|
#define DEBUG_USART_Config BSP_USART_Config
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* PY32F030xx_START_KIT_H */
|
|
|
|
/************************ (C) COPYRIGHT Puya *****END OF FILE****/
|