]> git.donarmstrong.com Git - kiibohd-controller.git/commitdiff
Updating DPH to compile with PartialLayer module
authorJacob Alexander <haata@kiibohd.com>
Thu, 11 Sep 2014 17:57:30 +0000 (10:57 -0700)
committerJacob Alexander <haata@kiibohd.com>
Thu, 11 Sep 2014 17:57:30 +0000 (10:57 -0700)
Scan/DPH/scan_loop.c
Scan/DPH/scan_loop.h

index da6d1517305c9027514029cd39061555abd43894..d995fc072c17a8f271f9cfc7ca69587801ab362e 100644 (file)
@@ -322,7 +322,7 @@ inline uint8_t Scan_loop()
 
 // Signal KeyIndex_Buffer that it has been properly read
 // NOTE: Only really required for implementing "tricks" in converters for odd protocols
-void Scan_finishedWithBuffer( uint8_t sentKeys )
+void Scan_finishedWithMacro( uint8_t sentKeys )
 {
        return;
 }
@@ -330,7 +330,7 @@ void Scan_finishedWithBuffer( uint8_t sentKeys )
 
 // Signal KeyIndex_Buffer that it has been properly read and sent out by the USB module
 // NOTE: Only really required for implementing "tricks" in converters for odd protocols
-void Scan_finishedWithUSBBuffer( uint8_t sentKeys )
+void Scan_finishedWithOutput( uint8_t sentKeys )
 {
        return;
 }
index 50abc3837623abf22f59cf2297fe304200b553dc..fc2bbbbd067046beb0ecc4a94377385b6543b1b5 100644 (file)
@@ -53,8 +53,8 @@ uint8_t Scan_loop();
 // Functions available to macro.c
 uint8_t Scan_sendData( uint8_t dataPayload );
 
-void Scan_finishedWithBuffer( uint8_t sentKeys );
-void Scan_finishedWithUSBBuffer( uint8_t sentKeys );
+void Scan_finishedWithMacro( uint8_t sentKeys );
+void Scan_finishedWithOutput( uint8_t sentKeys );
 
 
 #endif // __SCAN_LOOP_H