Printer seed!
This commit is contained in:
parent
b9fa977eca
commit
dd466b08f6
2 changed files with 4 additions and 5 deletions
|
@ -61,7 +61,7 @@ add_library( # Sets the name of the library.
|
||||||
src/main/cpp/core/mru.c
|
src/main/cpp/core/mru.c
|
||||||
src/main/cpp/core/opcodes.c
|
src/main/cpp/core/opcodes.c
|
||||||
src/main/cpp/core/pch.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/rpl.c
|
||||||
# src/main/cpp/core/serial.c
|
# src/main/cpp/core/serial.c
|
||||||
src/main/cpp/core/settings.c
|
src/main/cpp/core/settings.c
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
#include "core/pch.h"
|
#include "core/pch.h"
|
||||||
#include "core/Emu48.h"
|
#include "core/Emu48.h"
|
||||||
|
|
||||||
// Redeye.c
|
|
||||||
VOID IrPrinter(BYTE c) {
|
|
||||||
}
|
|
||||||
|
|
||||||
// Serial.c
|
// Serial.c
|
||||||
BOOL CommOpen(LPTSTR strWirePort,LPTSTR strIrPort) {
|
BOOL CommOpen(LPTSTR strWirePort,LPTSTR strIrPort) {
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -32,6 +28,9 @@ VOID ResetUdp(VOID) {
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL SendByteUdp(BYTE byData) {
|
BOOL SendByteUdp(BYTE byData) {
|
||||||
|
|
||||||
|
LOGD("SendByteUdp(%d -> 0x%02x -> '%c')", byData, byData, byData);
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue