Adding API changes introduced by the FACOM converter

- Shouldn't affect anything, and will allow for greater buffer clearing control
This commit is contained in:
Jacob Alexander 2013-01-20 22:36:05 -05:00
parent 65b4489884
commit f674db7de3
20 changed files with 40 additions and 40 deletions

View file

@ -204,7 +204,7 @@ uint8_t scan_sendData( uint8_t dataPayload )
// Signal KeyIndex_Buffer that it has been properly read
// In the case of the Micro Switch 8304, we leave the buffer alone until more scancode data comes in
void scan_finishedWithBuffer( void )
void scan_finishedWithBuffer( uint8_t sentKeys )
{
// We received a Clear code from the 8304, clear the buffer now that we've used it
if ( BufferReadyToClear )
@ -215,7 +215,7 @@ void scan_finishedWithBuffer( void )
}
// Signal that the keys have been properly sent over USB
void scan_finishedWithUSBBuffer( void )
void scan_finishedWithUSBBuffer( uint8_t sentKeys )
{
}