From 28df956007cda198d660492fa867808002b1e5a6 Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Thu, 11 Sep 2014 10:57:30 -0700 Subject: [PATCH] Updating DPH to compile with PartialLayer module --- Scan/DPH/scan_loop.c | 4 ++-- Scan/DPH/scan_loop.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Scan/DPH/scan_loop.c b/Scan/DPH/scan_loop.c index da6d151..d995fc0 100644 --- a/Scan/DPH/scan_loop.c +++ b/Scan/DPH/scan_loop.c @@ -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; } diff --git a/Scan/DPH/scan_loop.h b/Scan/DPH/scan_loop.h index 50abc38..fc2bbbb 100644 --- a/Scan/DPH/scan_loop.h +++ b/Scan/DPH/scan_loop.h @@ -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 -- 2.39.2