Files

  • Not Found
  • Invalid object requested. SHA must identify a commit or a tree.
Last update 3 years 11 months by Stephen Crane
Files
data
cad
.gitignore
LICENSE
Makefile
PSU.ino
README.md
configuration.cpp
configuration.h
dbg.h
label.cpp
label.h
rssi.h
smoother.h
stator.h
dbg.h
#ifndef __DBG_H__ #define __DBG_H__ extern bool debug; #define OUT(x) Serial.x #define DBG(x) if (debug) { OUT(x); } #define ERR(x) OUT(x) #endif
Report a bug