Files
firmware/shared/bridge_protocol.h

15 lines
325 B
C

#ifndef __BRIDGE_PROTOCOL__
#define __BRIDGE_PROTOCOL__
// Macros:
typedef enum {
BridgeCommand_GetKeyStates,
BridgeCommand_SetTestLed,
BridgeCommand_SetLedPwmBrightness,
BridgeCommand_SetDisableKeyMatrixScanState,
BridgeCommand_SetDisableLedSdb,
} bridge_command_t;
#endif