From 3828826957ec7b721e8227ea16276c6ecd369de1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Br=C3=BCggemann?= Date: Sun, 22 Aug 2021 00:24:44 +0200 Subject: [PATCH] Fix missing header guards --- io-helper.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/io-helper.h b/io-helper.h index 795e8df..f8d5a13 100644 --- a/io-helper.h +++ b/io-helper.h @@ -1,5 +1,10 @@ +#ifndef _IO_HELPER_ +#define _IO_HELPER_ + +#include extern volatile uint8_t outStates[4]; extern volatile uint8_t inStates[4]; +extern volatile uint8_t ioHelperDebounceTable[32]; void ioHelperSetOuts(void); void ioHelperReadPins(void); void ioHelperIoConf(void); @@ -17,3 +22,5 @@ void ioHelperDebounce(void); //Pin | Bit in inStates #define BitPinC1 0 #define BitPinC5 1 + +#endif