你的浏览器版本过低,可能导致网站不能正常访问!为了你能正常使用网站功能,请使用这些浏览器。
举报
晓枫VS枯叶 发表于 2014-11-7 12:48 你的触摸屏显示是正常的吗,只是触摸存在问题的话,看下触摸模块的原理图,结合程序看下程序有没有问题,用 ...
kaka123-253974 发表于 2014-11-10 15:54 STM32神舟开发板资料下载链接:http://blog.sina.com.cn/s/blog_7691b90c0101edpx.html
kaka123-253974 发表于 2014-11-11 15:11 你最好把工程打包一下发上来,看你的错误提示好像是工程模板的问题,貌似没有看到是语法或者代码问题 ...
显示没有问题,触摸是因为开发板源码有问题,我把程序修改后,现在实现了触摸,但是四周大约20个像素的范围触摸不到,等于说触摸四周,采集到的值在屏幕中间
请确定下载的最新例程,说一下是哪个例程有问题,您修改了哪里?
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
编译错误就是源码的工程模板错误