diff options
author | vin <git@vineetk.net> | 2024-01-15 18:52:15 -0500 |
---|---|---|
committer | vin <git@vineetk.net> | 2024-01-15 18:52:15 -0500 |
commit | 39b43b676e9aa8f549fea6fca7a6b7fd7891de69 (patch) | |
tree | 2559e89a4398c5bbe278c01f7549a9cfde3b6d7f /lib/usbhost/arduino-1.0.1/cores/arduino/main.cpp | |
parent | 8c8e1ad4d3f6a197cc7a0550940e0c71d84c050e (diff) |
remove more unused libraries
Diffstat (limited to 'lib/usbhost/arduino-1.0.1/cores/arduino/main.cpp')
-rw-r--r-- | lib/usbhost/arduino-1.0.1/cores/arduino/main.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/usbhost/arduino-1.0.1/cores/arduino/main.cpp b/lib/usbhost/arduino-1.0.1/cores/arduino/main.cpp deleted file mode 100644 index 3d4e079d2a..0000000000 --- a/lib/usbhost/arduino-1.0.1/cores/arduino/main.cpp +++ /dev/null @@ -1,20 +0,0 @@ -#include <Arduino.h> - -int main(void) -{ - init(); - -#if defined(USBCON) - USBDevice.attach(); -#endif - - setup(); - - for (;;) { - loop(); - if (serialEventRun) serialEventRun(); - } - - return 0; -} - |