Add test states.

This commit is contained in:
László Monda
2017-04-28 17:03:28 +02:00
parent 533ee5d228
commit e287b15068

19
right/src/test_states.h Normal file
View File

@@ -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