DPH Scan Module now compiles with recent architecture cleanups.

This commit is contained in:
Jacob Alexander 2014-04-16 00:15:09 -07:00
parent c905bfdebf
commit bb9c009586
6 changed files with 297 additions and 18 deletions

View file

@ -46,8 +46,8 @@ extern volatile uint8_t KeyIndex_BufferUsed;
// ----- Functions -----
// Functions used by main.c
void Scan_setup( void );
uint8_t Scan_loop( void );
void Scan_setup();
uint8_t Scan_loop();
// Functions available to macro.c
@ -55,9 +55,6 @@ uint8_t Scan_sendData( uint8_t dataPayload );
void Scan_finishedWithBuffer( uint8_t sentKeys );
void Scan_finishedWithUSBBuffer( uint8_t sentKeys );
void Scan_lockKeyboard( void );
void Scan_unlockKeyboard( void );
void Scan_resetKeyboard( void );
#endif // __SCAN_LOOP_H