From e287b15068363085389b97ada10faba92c6667b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Fri, 28 Apr 2017 17:03:28 +0200 Subject: [PATCH] Add test states. --- right/src/test_states.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 right/src/test_states.h diff --git a/right/src/test_states.h b/right/src/test_states.h new file mode 100644 index 0000000..3296e9e --- /dev/null +++ b/right/src/test_states.h @@ -0,0 +1,19 @@ +#ifndef __TEST_STATES__ +#define __TEST_STATES__ + +// Typedefs: + + typedef struct { + bool disableUsb; + bool disableI2c; + bool disableKeyMatrixScan; + bool disableLedSdb; + bool disableLedFetPwm; + bool disableLedDriverPwm; + } test_states_t; + +// Variables: + + extern test_states_t TestStates; + +#endif