|
可以了。
可能是下面几行程序,把STM32 的JTAG 口关掉了。然后把 BOOT0 -->1 BOOT1 -->0, 不让他运行这段程序还是不行。CHIP 锁死了。 我以为是ST LINK2下不到程序。 /* Disable the Serial Wire Jtag Debug Port SWJ-DP */ //GPIO_PinRemapConfig(GPIO_Remap_SWJ_Disable, ENABLE);
/* Configure PA.13 (JTMS/SWDAT), PA.14 (JTCK/SWCLK) and PA.15 (JTDI) as output push-pull */ /* Configure PB.03 (JTDO) and PB.04 (JTRST) as output push-pull */ GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3 | GPIO_Pin_4; GPIO_Init(GPIOB, &GPIO_InitStructure);
用的是力源发的小板子,又没有串口引出。 然后我从原来做的产品上,引了一个串口的TTL 出来,STMicroelectronics flash loader.exe 把STM32的Flash 清除,就可以了。 |
|