神州IV开法板的触摸屏程序,下载到开发板中,为什么不能触摸显示

2019-07-14 15:36发布

神州IV开法板的触摸屏程序,下载到开发板中,为啥不能触摸显示
触摸屏是在官方新买的,当屏按下时,INT引脚有电平变化,程序中的3_2我已经改成了2_8了,请大侠指导小弟吗,谢谢
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
10条回答
Dyua
2019-07-15 07:04
jufenyi 发表于 2018-11-30 17:45
STM32神舟开发板资料下载链接:http://blog.sina.com.cn/s/blog_7691b90c0101edpx.html

void SPI1_Config(void)
{
  GPIO_InitTypeDef GPIO_InitStructure;
  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
  
  GPIO_InitStructure.GPIO_Pin = SPI1_SCK | SPI1_MOSI;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  GPIO_Init(SPI1_PORT, &GPIO_InitStructure);
  
  //SPI_MISO
  GPIO_InitStructure.GPIO_Pin = SPI1_MISO;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  GPIO_Init(SPI1_PORT, &GPIO_InitStructure);
}

/* SPI1管脚定义*/
#define SPI1_PORT   GPIOC
#define SPI1_SCK    GPIO_Pin_10
#define SPI1_MISO   GPIO_Pin_11  
#define SPI1_MOSI   GPIO_Pin_12

源码编译结果
stm32f10x_it.c: Error: command-line:  #564: cannot open preprocessing output output file ".神舟IV号stm32f10x_it.d": No such file or directory

一周热门 更多>