aboutsummaryrefslogtreecommitdiff
path: root/lib/pbdrv/drv/arduino/mod.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-06-15 14:15:36 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-06-15 14:15:36 +0200
commitb9599d6cbaf924b2c9f73511d5c7604ed57a755d (patch)
tree941a5e91ec460c5dcee9ddd4b72ad5cd1223d978 /lib/pbdrv/drv/arduino/mod.h
parent20f442e5f5aa6a4fcf07f65e2f446a3c0ff8e4f2 (diff)
compiling works again :cry:
Diffstat (limited to 'lib/pbdrv/drv/arduino/mod.h')
-rw-r--r--lib/pbdrv/drv/arduino/mod.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/pbdrv/drv/arduino/mod.h b/lib/pbdrv/drv/arduino/mod.h
deleted file mode 100644
index 87b5724..0000000
--- a/lib/pbdrv/drv/arduino/mod.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-//! Arduino init variant (called before user setup)
-void initVariant(void);
-
-/**
- * \brief Arduino loop function
- *
- * Loop won't run because everything is handled by the freertos scheduler. It
- * is defined in this driver to cause compiler warnings if the user has defined
- * the loop() function anyways.
- */
-extern void loop(void);
-
-#ifdef __cplusplus
-}
-#endif
-