实在摸不着头脑了....
void Printf**(char *strName, char *strDate)
{
printf("*************************************************************\n\r");
printf("* Example Name : %s\r\n", strName);
printf("* Update Date : %s\r\n", strDate);
printf("* StdPeriph_Lib Version : V3.1.2\n\r");
printf("* \n\r");
串口助手得出下面的结果
*************************************************************
* Example Name : uIP TCP Demp
* Update D
连Data都没打印完整.....
点了STOP停在了这里:
“void HardFault_Handler(void)
{
/* Go to infinite loop when Hard Fault exception occurs */
while (1)
{
}”
出现了硬件故障...
为什么打印出了半截呢?
要是配置出错的话,压根打不出来才是啊 ⊙﹏⊙?
|