This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/MCU/MCU_3 _TIM_Interrupt/delay.c

7 lines
69 B
C

#include "delay.h"
void delay(int i)
{
for(i = 14; i > 0; i--);
}