本帖最后由 Sam131208 于 2023-11-22 09:16 编辑
N32L40xxx_V2.2.0\6-Software Development Kit\Nationstech.N32L40x_Library.1.2.2\projects\n32l40x_EVAL\examples\LCD\LCD_Display 例程,segment口的信号有输出,com2口一直高电平。com0, com1, com3 信号正常。
/*Configure peripheral GPIO output for LCD*/
/* Port A : */
/* PA1: SEG0 PA2: SEG1 PA3: SEG2 PA6: SEG3
PA7: SEG4 */
gpioinitstruct.Pin = GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_3 | GPIO_PIN_6 | GPIO_PIN_7 | GPIO_PIN_8 | GPIO_PIN_9 | GPIO_PIN_10;
gpioinitstruct.GPIO_Mode = GPIO_Mode_Analog;
gpioinitstruct.GPIO_Pull = GPIO_No_Pull;
gpioinitstruct.GPIO_Alternate = GPIO_AF10_LCD;
GPIO_InitPeripheral(GPIOA, &gpioinitstruct);
|