diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-15 14:15:36 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-15 14:15:36 +0200 |
commit | b9599d6cbaf924b2c9f73511d5c7604ed57a755d (patch) | |
tree | 941a5e91ec460c5dcee9ddd4b72ad5cd1223d978 /lib/pbdrv/drv/arduino/mod.h | |
parent | 20f442e5f5aa6a4fcf07f65e2f446a3c0ff8e4f2 (diff) |
compiling works again :cry:
Diffstat (limited to 'lib/pbdrv/drv/arduino/mod.h')
-rw-r--r-- | lib/pbdrv/drv/arduino/mod.h | 22 |
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 - |