Index
auto-plow
/
ec2dcee
A wheelchair motor-propelled battery-powered ESP32-driven remote control snow plow.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
5
08 Nov 2019 19:26
ec2dcee
Radio Receiver and Other Updates
Josh Stockin
1
10
0
N
Blob @
auto-plow
/
main
/
util.h
text/plain
161 bytes
download raw
1
#ifndef __UTIL_H__
2
#define __UTIL_H__
3
4
int
ticks_to_ms
(
int
ticks
);
5
int
ms_to_ticks
(
int
ms
);
6
void
delay
(
int
ms
);
7
8
extern
unsigned int
xthal_get_ccount
();
9
10
#endif
11