openMSX
|
#include <RS232Device.hh>
Public Member Functions | |
std::string_view | getClass () const final |
A pluggable belongs to a certain class. | |
virtual void | signal (EmuTime::param time)=0 |
void | setDataBits (DataBits bits) override |
void | setStopBits (StopBits bits) override |
void | setParityBit (bool enable, Parity parity) override |
virtual std::optional< bool > | getCTS (EmuTime::param time) const |
virtual std::optional< bool > | getDSR (EmuTime::param time) const |
virtual std::optional< bool > | getDCD (EmuTime::param time) const |
virtual std::optional< bool > | getRI (EmuTime::param time) const |
virtual void | setDTR (bool status, EmuTime::param time) |
virtual void | setRTS (bool status, EmuTime::param time) |
Public Member Functions inherited from openmsx::Pluggable | |
virtual | ~Pluggable ()=default |
virtual std::string_view | getName () const |
Name used to identify this pluggable. | |
virtual std::string_view | getDescription () const =0 |
Description for this pluggable. | |
void | plug (Connector &connector, EmuTime::param time) |
This method is called when this pluggable is inserted in a connector. | |
void | unplug (EmuTime::param time) |
This method is called when this pluggable is removed from a connector. | |
Connector * | getConnector () const |
Get the connector this Pluggable is plugged into. | |
bool | isPluggedIn () const |
Returns true if this pluggable is currently plugged into a connector. | |
Public Member Functions inherited from openmsx::SerialDataInterface | |
virtual void | recvByte (byte value, EmuTime::param time)=0 |
Additional Inherited Members | |
Public Types inherited from openmsx::SerialDataInterface | |
enum class | DataBits { D5 = 5 , D6 = 6 , D7 = 7 , D8 = 8 } |
enum class | StopBits { INV = 0 , S1 = 2 , S1_5 = 3 , S2 = 4 } |
enum class | Parity { EVEN = 0 , ODD = 1 } |
Protected Member Functions inherited from openmsx::Pluggable | |
Pluggable () | |
virtual void | plugHelper (Connector &newConnector, EmuTime::param time)=0 |
virtual void | unplugHelper (EmuTime::param time)=0 |
void | setConnector (Connector *conn) |
Protected Member Functions inherited from openmsx::SerialDataInterface | |
~SerialDataInterface ()=default | |
Definition at line 9 of file RS232Device.hh.
|
finalvirtual |
A pluggable belongs to a certain class.
A pluggable only fits in connectors of the same class.
Implements openmsx::Pluggable.
Definition at line 5 of file RS232Device.cc.
|
virtual |
Reimplemented in openmsx::RS232Net, and openmsx::RS232Tester.
Definition at line 42 of file RS232Device.cc.
|
virtual |
Reimplemented in openmsx::RS232Net.
Definition at line 52 of file RS232Device.cc.
|
virtual |
Reimplemented in openmsx::RS232Net, and openmsx::RS232Tester.
Definition at line 47 of file RS232Device.cc.
|
virtual |
Reimplemented in openmsx::RS232Net.
Definition at line 57 of file RS232Device.cc.
|
overridevirtual |
Implements openmsx::SerialDataInterface.
Definition at line 10 of file RS232Device.cc.
|
virtual |
Reimplemented in openmsx::RS232Net.
Definition at line 62 of file RS232Device.cc.
|
overridevirtual |
Implements openmsx::SerialDataInterface.
Definition at line 20 of file RS232Device.cc.
|
virtual |
Reimplemented in openmsx::RS232Net.
Definition at line 67 of file RS232Device.cc.
|
overridevirtual |
Implements openmsx::SerialDataInterface.
Definition at line 15 of file RS232Device.cc.
|
pure virtual |
Implemented in openmsx::DummyRS232Device, openmsx::RS232Net, and openmsx::RS232Tester.