您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
146B

  1. #ifndef _DELAY_H
  2. #define _DELAY_H
  3. #include "stm32f10x.h"
  4. void delay_ms(unsigned short timeCnt);
  5. void delay_5us(unsigned short timeCnt);
  6. #endif