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