Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
shuai-zhao
/
PBL
like
0
Dataset card
Files
Files and versions
xet
Community
main
PBL
/
Engineering
/
project9
/
misc.c
shuai-zhao
initial upload
7b6bf43
verified
11 months ago
raw
Copy download link
history
blame
contribute
delete
163 Bytes
#
include
"misc.h"
void
delay
(
uint32_t
t)
{
uint32_t
nTimingDelay =
0
;
nTimingDelay = t + TIM2->CNT;
while
(TIM2->CNT < nTimingDelay);
}