同样的程序在STM32F上面是正常的。但在STM32L上面就不正常,下面是PWM输出的代码是控制灯的亮度的。 #define LCD_GPIO GPIOA #define LCD_BKL GPIO_Pin_6 void BackLigthCtrl(unsigned int Value) { TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure; TIM_OCInitTypeDef TIM_OCInitStructure; GPIO_InitTypeDef GPIO_InitStructure; if(Value) { // Value |
RE:STM32L PWM 和 I2C 问题