You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 line
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