aboutsummaryrefslogtreecommitdiffstats
path: root/fw/main.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-10-23 16:01:22 -0400
committerSam Anthony <sam@samanthony.xyz>2025-10-23 16:01:22 -0400
commit04fbfdb4fd6bf4118b88867d852e3b29d139c800 (patch)
tree504a392a7e68b0d3aeedfddc8518ab4ae4bb33fd /fw/main.c
parent24bce89e4663baaa28332887d5b531fa03ebb252 (diff)
downloadcan-gauge-interface-04fbfdb4fd6bf4118b88867d852e3b29d139c800.zip
fw: remove usb
Diffstat (limited to 'fw/main.c')
-rw-r--r--fw/main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fw/main.c b/fw/main.c
index 326f8bf..d035a02 100644
--- a/fw/main.c
+++ b/fw/main.c
@@ -8,7 +8,6 @@
#include "spi.h"
#include "eeprom.h"
#include "can.h"
-#include "usb.h"
void
main(void) {
@@ -16,10 +15,9 @@ main(void) {
spiInit();
eepromInit();
canInit();
- usbInit();
for (;;) {
- usbTask();
+
}
}