Image
Image

结合国际经验

+ 关注

粉丝 1     |     主题 66     |     回帖 775

在 Keil uVision4 MDK下配置开发STM32F103Z完整教程
2023-11-12 12:20
  • ST MCU
  • 59
  • 2589
  参数2:使能外设时钟或关闭外设时钟 ENABLE or DISABLE  
  功能:开启或关闭的挂接在APB2总线上的外设时钟 参数1: RCC_APB1Periph_TIM2, RCC_APB1Pe ...  
  参数2:使能外设时钟或关闭外设时钟 ENABLE or DISABLE void RCC_APB1PeriphClockCmd ( uint32_t ...  
  参数1: RCC_APB2Periph_AFIO, RCC_APB2Periph_GPIOA, RCC_APB2Periph_GPIOB, ...  
  外设时钟控制: void RCC_APB2PeriphResetCmd ( uint32_t RCC_APB2Periph, FunctionalState NewState) ...  
  void GPIO_ResetBits ( GPIO_TypeDef * GPIOx, uint16_t GPIO_Pin) 功能:设置GPIO引脚输出低电平 参数1 ...  
  void GPIO_SetBits ( GPIO_TypeDef * GPIOx, uint16_t GPIO_Pin) 功能:设置GPIO引脚输出高电平 参数1: ...  
  实例: 40. /*调用库函数,初始化 GPIOC*/ 41. GPIO_Init(GPIOC, &GPIO_InitStructure); ...  
  GPIO控制: void GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_InitStruct); 功能:根据 GPIOx ...  
  实例: 31. /*选择要控制的 GPIOC 引脚*/ ...  
  1. typedef struct 2. { 3. uint16_t GPIO_Pin; /*指定将要进行配置的 GPIO 引脚*/ ...  
  1. typedef enum 2. {GPIO_Mode_AIN = 0x0, //模拟输入模式 3. GPIO_Mode_IN_FLOATING ...  
  ......  
  流水灯流程: 1、开启指定GPIO的外设时钟 -> RCC_APB2PeriphClockCmd() 2、设置 GPIO_Init ...  
  流水灯实验: 只用到 配置GPIO功能和配置时钟功能,所以在 stm32f10x_conf.h 只需要包含两个头文件即可: ...  
  添加 USE_STDPERIPH_DRIVER 是为了屏蔽编译器的默认搜索路径,转而使用我们添加 到工程中的 ST 的库,添加 ...  
  ......  
  ......  
  ......  
  ......  
2
3
近期访客