diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index 844e1dd..f5e9f39 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -61,7 +61,7 @@ add_library( # Sets the name of the library. src/main/cpp/core/mru.c src/main/cpp/core/opcodes.c src/main/cpp/core/pch.c -# src/main/cpp/core/redeye.c + src/main/cpp/core/redeye.c src/main/cpp/core/rpl.c # src/main/cpp/core/serial.c src/main/cpp/core/settings.c diff --git a/app/src/main/cpp/android-layer.c b/app/src/main/cpp/android-layer.c index d80afa4..f076ca9 100644 --- a/app/src/main/cpp/android-layer.c +++ b/app/src/main/cpp/android-layer.c @@ -1,10 +1,6 @@ #include "core/pch.h" #include "core/Emu48.h" -// Redeye.c -VOID IrPrinter(BYTE c) { -} - // Serial.c BOOL CommOpen(LPTSTR strWirePort,LPTSTR strIrPort) { return 0; @@ -32,6 +28,9 @@ VOID ResetUdp(VOID) { } BOOL SendByteUdp(BYTE byData) { + + LOGD("SendByteUdp(%d -> 0x%02x -> '%c')", byData, byData, byData); + return FALSE; }