Files
firmware/right/src/test_states.h

20 lines
348 B
C

#ifndef __TEST_STATES_H__
#define __TEST_STATES_H__
// 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