15 lines
323 B
C
15 lines
323 B
C
#ifndef __SLAVE_PROTOCOL_H__
|
|
#define __SLAVE_PROTOCOL_H__
|
|
|
|
// Typedefs:
|
|
|
|
typedef enum {
|
|
SlaveCommand_GetKeyStates,
|
|
SlaveCommand_SetTestLed,
|
|
SlaveCommand_SetLedPwmBrightness,
|
|
SlaveCommand_SetDisableKeyMatrixScanState,
|
|
SlaveCommand_SetDisableLedSdb,
|
|
} slave_command_t;
|
|
|
|
#endif
|