Fixing compiler errors for usbMuxUart Output module
- Removing (currently) redundant usbMuxUart capabilities.kll file - Issues were due to the recent AddModule cmake function addition
This commit is contained in:
parent
ae6daa0e5c
commit
733201d39b
4 changed files with 91 additions and 18 deletions
|
@ -80,6 +80,8 @@ extern USBKeyChangeState USBKeys_Changed;
|
|||
|
||||
extern uint8_t Output_Available; // 0 - Output module not fully functional, 1 - Output module working
|
||||
|
||||
extern uint8_t Output_DebugMode; // 0 - Debug disabled, 1 - Debug enabled
|
||||
|
||||
|
||||
|
||||
// ----- Capabilities -----
|
||||
|
@ -88,6 +90,10 @@ void Output_consCtrlSend_capability( uint8_t state, uint8_t stateType, uint8_t *
|
|||
void Output_sysCtrlSend_capability( uint8_t state, uint8_t stateType, uint8_t *args );
|
||||
void Output_usbCodeSend_capability( uint8_t state, uint8_t stateType, uint8_t *args );
|
||||
|
||||
// Configuration capabilities
|
||||
void Output_kbdProtocolBoot_capability( uint8_t state, uint8_t stateType, uint8_t *args );
|
||||
void Output_kbdProtocolNKRO_capability( uint8_t state, uint8_t stateType, uint8_t *args );
|
||||
|
||||
|
||||
|
||||
// ----- Functions -----
|
||||
|
@ -95,6 +101,8 @@ void Output_usbCodeSend_capability( uint8_t state, uint8_t stateType, uint8_t *a
|
|||
void Output_setup();
|
||||
void Output_send();
|
||||
|
||||
void Output_flushBuffers();
|
||||
|
||||
void Output_firmwareReload();
|
||||
void Output_softReset();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue