延时若干机器周期_nop_(),要根据延长时间来写,毕竟_nop_()占用一个字节
void Delay(){ _nop_(); _nop_(); _nop_(); 。。。。 _nop_();}这能这么写,需要延时多少机器周期就写多少个_nop_();函数
用systick?