Index

auto-plow / ec2dcee

A wheelchair motor-propelled battery-powered ESP32-driven remote control snow plow.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
508 Nov 2019 19:26ec2dceeRadio Receiver and Other UpdatesJosh Stockin1100N

Blob @ auto-plow / main / util.h

text/plain161 bytesdownload raw
1#ifndef __UTIL_H__
2#define __UTIL_H__
3
4int ticks_to_ms(int ticks);
5int ms_to_ticks(int ms);
6void delay(int ms);
7
8extern unsigned int xthal_get_ccount();
9
10#endif
11