Printer seed!

This commit is contained in:
dgis 2019-06-11 20:46:27 +02:00
parent b9fa977eca
commit dd466b08f6
2 changed files with 4 additions and 5 deletions

View file

@ -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

View file

@ -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;
}