This commit is contained in:
Stephen Crane 2019-02-12 21:53:03 +00:00
parent 06f385b6cd
commit 6a929aedbe
1 changed files with 6 additions and 0 deletions

View File

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