mirror of
https://github.com/jscrane/r65emu.git
synced 2024-11-16 21:10:58 +00:00
...
This commit is contained in:
parent
06f385b6cd
commit
6a929aedbe
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user