mirror of
https://github.com/jscrane/r65emu.git
synced 2024-11-08 16:07:26 +00:00
31 lines
495 B
C++
31 lines
495 B
C++
#include <Arduino.h>
|
|
#include <stdint.h>
|
|
#include "hardware.h"
|
|
#include "serialio.h"
|
|
#include "filer.h"
|
|
#include "serial_filer.h"
|
|
|
|
bool serial_filer::start(const char *) {
|
|
Serial.begin(TERM_SPEED);
|
|
return true;
|
|
}
|
|
|
|
void serial_filer::write(uint8_t b) {
|
|
Serial.write(b);
|
|
}
|
|
|
|
uint8_t serial_filer::read() {
|
|
return Serial.read();
|
|
}
|
|
|
|
bool serial_filer::more() {
|
|
return Serial.available() > 0;
|
|
}
|
|
|
|
const char *serial_filer::checkpoint() {
|
|
return 0;
|
|
}
|
|
|
|
void serial_filer::restore(const char *) {
|
|
}
|