diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-05 14:49:34 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-05 14:49:34 +0200 |
commit | 36a8f66aeee73e82f28b040ca304e55034f05644 (patch) | |
tree | cbd29649bf24c39415fca55eb4175fbf288f6f37 /shared/pb/drv/arduino/mod.h | |
parent | a8b794c02574e96150d55852fa5db1ce7529503d (diff) |
arduino specific puzzle bus driver test
Diffstat (limited to 'shared/pb/drv/arduino/mod.h')
-rw-r--r-- | shared/pb/drv/arduino/mod.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/shared/pb/drv/arduino/mod.h b/shared/pb/drv/arduino/mod.h new file mode 100644 index 0000000..e2e3b6d --- /dev/null +++ b/shared/pb/drv/arduino/mod.h @@ -0,0 +1,19 @@ +#pragma once + +#include "../../moddrv.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief puzzle bus driver setup + * + * This function should be called from the Arduino \c setup() function. + */ +void pbdrv_setup(); + +#ifdef __cplusplus +} +#endif + |