我本仁慈,奈何苍天不许
发布时间:2014-07-24 16:07:34
问题: ..\Main\voice.c(266): error: #268: declaration may not appear after executable statement in block 分析: 在编译STM32程序中,提示这个是因为把变量的声明放在了可执行语句的后面如下面这几行代码: .........【阅读全文】
发布时间:2014-07-21 16:41:43
用Keil编译STM32时提示:.\Obj\STM32-LD3320.axf: Error: L6200E: Symbol sRecog multiply defined (by ld3320_main.o and main.o).解决办法:把相应的东西放在.c文件中就行,不要放在.h头文件中......【阅读全文】
发布时间:2014-07-21 10:28:25
Keil提示:*.axf: Error: L6967E: Entry point (0x08000000) points to a Thumb instruction but is not a valid Thumb code pointer.解决办法: 1、1、菜单 options for target->linker->misc controls加入--entry Reset_Handler --first __Vectors2、options for target->asm->Include Paths 然.........【阅读全文】
发布时间:2014-07-18 10:11:22
STM32中SD的初始化代码:SD_Error SD_Init(void){ /*重置SD_Error状态*/ SD_Error errorstatus = SD_OK; /* SDIO 外设底层引脚初始化 */ GPIO_Configuration(); /*对SD.........【阅读全文】
发布时间:2014-07-10 16:19:49
根据原子的《STM32不完全手册》。SYSTICK 的时钟固定为HCLK 时钟的1/8,在这里我们选用内部时钟源72M,所以SYSTICK的时钟为9M,即SYSTICK定时器以9M的频率递减。SysTick 主要包含CTRL、LOAD、VAL、CALIB 等4 个寄存器。SYSTICK的时钟为9M,故1us有9个计数。SysTick->CTRL:位段 名称 类型.........【阅读全文】