From 762af872d2f2c977e51d6e51b8c3ad622485cc05 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Sun, 5 Dec 2021 23:49:26 -0600 Subject: fix missing prototype warnings --- utils/flash_watch_pyruler/flash_watch_pyruler.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils') 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); -- cgit v1.2.3