编译时一直出现这个是怎么回事 ,(渣渣刚开始)
Build target 'Target 1'
compiling 跑马灯.c...
跑马灯.c: Error: command-line: #564: cannot open preprocessing output output file "跑马灯.d": No such file or directory
Target not created
[mw_shl_code=c,true]#include<stm32f10X.h>
#include"delay.h"
#include"sys.h"
int main()
{
Stm32_Clock_Init(9);
delay_init(72);
RCC->APB2ENR|=1<<3;
RCC->APB2ENR|=1<<6;
GPIOB->CRL&=0xff0fffff;
GPIOB->CRL|=0x00300000;
GPIOB->ODR|=1<<5;
GPIOE->CRL&=0xff0fffff;
GPIOE->CRL|=0x00300000;
GPIOE->ODR|=1<<5;
while(1)
{
GPIOB->ODR|=1<<5;
GPIOE->ODR|=1<<5;
delay_ms(1000);
GPIOB->ODR|=~(1<<5);
GPIOE->ODR|=~(1<<5);
delay_ms(1000);
}
}[/mw_shl_code]
|