• 大小: 1.21KB
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: LED  点亮  gpio  

资源简介

点亮led(gpio点亮led灯.c )

资源截图

代码片段和文件信息

#include 
#include 

#ifdef __cplusplus
extern “C“
#endif
void SysTick_Handler(void)
{
HAL_IncTick();
HAL_SYSTICK_IRQHandler();
}

int main(void)
{
HAL_Init();

__GPIOC_CLK_ENABLE();
__GPIOB_CLK_ENABLE();
GPIO_InitTypeDef GPIO_InitStructure;

GPIO_InitStructure.Pin = GPIO_PIN_13;

GPIO_InitStructure.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStructure.Speed = GPIO_SPEED_HIGH;
GPIO_InitStructure.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOC &GPIO_InitStructure);

GPIO_InitStructure.Pin = GPIO_PIN_8 | GPIO_PIN_9;

GPIO_InitStructure.Mode = GPIO_MODE

评论

共有 条评论