✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
В функцію ініціалізації порта замість **************** вставити правильний параметр:
void LCD_InitGPIO(void)
{
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA,ENABLE);
GPIO_InitTypeDef gpio;
GPIO_StructInit(&gpio);
gpio.GPIO_Pin = TFT_DC_PIN | TFT_RESET_PIN | TFT_CS_PIN;
gpio.GPIO_Mode = **************;
gpio.GPIO_Speed = GPIO_Speed_50MHz;
gpio.GPIO_OType = GPIO_OType_PP;
gpio.GPIO_PuPd = GPIO_PuPd_DOWN;
GPIO_Init(GPIOA,&gpio);
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!