1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-09 14:29:35 +00:00
This commit is contained in:
Stephen Crane 2019-02-12 21:53:03 +00:00
parent 06f385b6cd
commit 6a929aedbe

View File

@ -6,8 +6,12 @@
#include "serial_filer.h" #include "serial_filer.h"
bool serial_filer::start(const char *) { bool serial_filer::start(const char *) {
#if defined(TERM_SPEED)
Serial.begin(TERM_SPEED); Serial.begin(TERM_SPEED);
return true; return true;
#else
return false;
#endif
} }
void serial_filer::write(uint8_t b) { void serial_filer::write(uint8_t b) {
@ -23,8 +27,10 @@ bool serial_filer::more() {
} }
const char *serial_filer::checkpoint() { const char *serial_filer::checkpoint() {
// FIXME
return 0; return 0;
} }
void serial_filer::restore(const char *) { void serial_filer::restore(const char *) {
// FIXME
} }