comparison Output/usbMuxUart/output_com.h @ 300:7119c2149abb

Fixing compiler errors for usbMuxUart Output module - Removing (currently) redundant usbMuxUart capabilities.kll file - Issues were due to the recent AddModule cmake function addition
author Jacob Alexander <haata@kiibohd.com>
date Fri, 06 Mar 2015 23:37:09 -0800
parents d5bf41d7f7ef
children e8841d3c6db5
comparison
equal deleted inserted replaced
299:c856f826bd49 300:7119c2149abb
78 78
79 extern USBKeyChangeState USBKeys_Changed; 79 extern USBKeyChangeState USBKeys_Changed;
80 80
81 extern uint8_t Output_Available; // 0 - Output module not fully functional, 1 - Output module working 81 extern uint8_t Output_Available; // 0 - Output module not fully functional, 1 - Output module working
82 82
83 extern uint8_t Output_DebugMode; // 0 - Debug disabled, 1 - Debug enabled
84
83 85
84 86
85 // ----- Capabilities ----- 87 // ----- Capabilities -----
86 88
87 void Output_consCtrlSend_capability( uint8_t state, uint8_t stateType, uint8_t *args ); 89 void Output_consCtrlSend_capability( uint8_t state, uint8_t stateType, uint8_t *args );
88 void Output_sysCtrlSend_capability( uint8_t state, uint8_t stateType, uint8_t *args ); 90 void Output_sysCtrlSend_capability( uint8_t state, uint8_t stateType, uint8_t *args );
89 void Output_usbCodeSend_capability( uint8_t state, uint8_t stateType, uint8_t *args ); 91 void Output_usbCodeSend_capability( uint8_t state, uint8_t stateType, uint8_t *args );
90 92
93 // Configuration capabilities
94 void Output_kbdProtocolBoot_capability( uint8_t state, uint8_t stateType, uint8_t *args );
95 void Output_kbdProtocolNKRO_capability( uint8_t state, uint8_t stateType, uint8_t *args );
96
91 97
92 98
93 // ----- Functions ----- 99 // ----- Functions -----
94 100
95 void Output_setup(); 101 void Output_setup();
96 void Output_send(); 102 void Output_send();
103
104 void Output_flushBuffers();
97 105
98 void Output_firmwareReload(); 106 void Output_firmwareReload();
99 void Output_softReset(); 107 void Output_softReset();
100 108
101 // Relies on USB serial module 109 // Relies on USB serial module