38 #ifndef __DEV_SERIAL_HH__ 39 #define __DEV_SERIAL_HH__ 44 struct SerialDeviceParams;
45 struct SerialNullDeviceParams;
156 #endif // __DEV_SERIAL_HH__
virtual uint8_t readData()=0
Read a character from the device.
void writeData(uint8_t c) override
Transmit a character from the host interface to the device.
void regInterfaceCallback(Callback *c)
Register a data available callback into the host interface layer.
void notifyInterface()
Notify the host interface of pending data.
SerialDevice(const SerialDeviceParams *p)
virtual void writeData(uint8_t c)=0
Transmit a character from the host interface to the device.
Base class for serial devices such as terminals.
bool dataAvailable() const override
Check if there is pending data from the serial device.
virtual bool dataAvailable() const =0
Check if there is pending data from the serial device.
Abstract superclass for simulation objects.
Dummy serial device that discards all data sent to it.
Callback * interfaceCallback
Currently regisxtered host interface layer callback.