下你所需,载你所想!
汇集开发技术源码资料

c语言对于stm32f407的tft屏幕应用开发

:4.098MB :1 :2022-10-08 14:45:30

部分简介

c语言对于stm32f407的tft屏幕应用开发如果开发者对于本文件有需要的可以参考。
c语言对于stm32f407的tft屏幕应用开发,可应用于多种尺寸。
运用keil的库函数开发
void LED_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);//ê1?üGPIOFê±?ó
//GPIOF9,F103?ê??ˉéè??
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9 | GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;//??í¨ê?3??£ê?
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;//í?íìê?3?
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;//100MHz
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//é?à-
GPIO_Init(GPIOF, &GPIO_InitStructure);//3?ê??ˉ

GPIO_SetBits(GPIOF,GPIO_Pin_9 | GPIO_Pin_10);//GPIOF9,F10éè????£?μ??e
}

c语言对于stm32f407的tft屏幕应用开发

热门推荐

相关文章