summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorJoey Castillo <joeycastillo@utexas.edu>2021-12-05 23:49:26 -0600
committerJoey Castillo <joeycastillo@utexas.edu>2021-12-05 23:49:26 -0600
commite202c48b0a1a9838e91d020ca2b71214119b3c3d (patch)
treeadb63f4f22179d5d28599a6902ba6a91f52c5deb /utils
parented94efcb8559d21820e8a06214e95191eed4c9b3 (diff)
downloadSensor-Watch-e202c48b0a1a9838e91d020ca2b71214119b3c3d.tar.gz
Sensor-Watch-e202c48b0a1a9838e91d020ca2b71214119b3c3d.tar.bz2
Sensor-Watch-e202c48b0a1a9838e91d020ca2b71214119b3c3d.zip
fix missing prototype warnings
Diffstat (limited to 'utils')
-rw-r--r--utils/flash_watch_pyruler/flash_watch_pyruler.ino4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/flash_watch_pyruler/flash_watch_pyruler.ino b/utils/flash_watch_pyruler/flash_watch_pyruler.ino
index 2e4d2f08..ae9de2e4 100644
--- a/utils/flash_watch_pyruler/flash_watch_pyruler.ino
+++ b/utils/flash_watch_pyruler/flash_watch_pyruler.ino
@@ -29,7 +29,7 @@ void error(const char *text) {
}
-void setup() {
+void setup(void) {
pinMode(13, OUTPUT);
Serial.begin(115200);
// while(!Serial) {
@@ -102,7 +102,7 @@ void setup() {
dap.dap_disconnect();
}
-void loop() {
+void loop(void) {
//blink led on the host to show we're done
digitalWrite(13, HIGH);
delay(500);