mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
13 lines
133 B
C
13 lines
133 B
C
#include "share.h"
|
|
|
|
void Delay_Ms(int ms)
|
|
{
|
|
volatile unsigned short i;
|
|
for (; ms > 0; ms--)
|
|
{
|
|
for(i = 12000;i > 0;i--) ;
|
|
}
|
|
|
|
}
|
|
|