BLE_TYQ_CH584M/BSP/src/bsp_key.c

15 lines
182 B
C
Raw Normal View History

2024-12-09 11:41:44 +08:00
#include "bsp_key.h"
void BSP_KEY_Init(void)
{
// KEY
2024-12-13 18:14:02 +08:00
GPIOB_SetBits(GPIO_Pin_7);
2024-12-09 11:41:44 +08:00
// 由外部上拉电阻了
2024-12-13 18:14:02 +08:00
GPIOB_ModeCfg(GPIO_Pin_7, GPIO_ModeIN_Floating);
2024-12-09 11:41:44 +08:00
}