# HG changeset patch # User Jacob Alexander # Date 1410458250 25200 # Node ID 048c8a266a084ddeb2818971083bcd83d944e7d0 # Parent 559a467f6d57b4bb22f0f3f05e0a2d1e61cfa260 Updating DPH to compile with PartialLayer module diff -r 559a467f6d57 -r 048c8a266a08 Scan/DPH/scan_loop.c --- a/Scan/DPH/scan_loop.c Sun Sep 07 21:10:49 2014 -0700 +++ b/Scan/DPH/scan_loop.c Thu Sep 11 10:57:30 2014 -0700 @@ -322,7 +322,7 @@ // 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 @@ // 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; } diff -r 559a467f6d57 -r 048c8a266a08 Scan/DPH/scan_loop.h --- a/Scan/DPH/scan_loop.h Sun Sep 07 21:10:49 2014 -0700 +++ b/Scan/DPH/scan_loop.h Thu Sep 11 10:57:30 2014 -0700 @@ -53,8 +53,8 @@ // 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