Files
firmware/right/src/test_states.h
László Monda e287b15068 Add test states.
2017-04-28 17:03:28 +02:00

20 lines
344 B
C

#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