RS-485 unit using the SIT3088 transceiver (manual direction control via a DIR pin)
More...
|
|
| UnitSIT3088 () |
| | Constructor. dir_pin remains unset; set via config() before begin().
|
| |
|
virtual | ~UnitSIT3088 ()=default |
| | Destructor.
|
| |
| virtual bool | begin () override |
| | Configure the DIR pin, then begin using the registered UART adapter.
|
| |
|
| config_t | config () |
| | Gets the configuration.
|
| |
| void | config (const config_t &cfg) |
| | Sets the configuration.
|
| |
|
virtual | ~RS485Component ()=default |
| | Destructor.
|
| |
| config_t | config () |
| | Gets the configuration.
|
| |
| void | config (const config_t &cfg) |
| | Sets the configuration.
|
| |
|
| operator bool () const |
| | Returns true if the unit is registered.
|
| |
| int | available () |
| | Returns the number of available bytes to read.
|
| |
| int | availableForWrite () |
| | Returns the number of bytes that can be written without blocking.
|
| |
| int | peek () |
| | Peeks the next incoming byte without removing it.
|
| |
| int | read () |
| | Reads one byte.
|
| |
| size_t | read (uint8_t *buffer, const size_t size) |
| | Reads up to size bytes into buffer.
|
| |
| size_t | read (char *buffer, const size_t size) |
| | Reads up to size bytes into buffer.
|
| |
| size_t | readBytes (uint8_t *buffer, const size_t length) |
| | Reads bytes with timeout defined by underlying Serial.
|
| |
| size_t | readBytes (char *buffer, const size_t length) |
| | Reads bytes with timeout defined by underlying Serial.
|
| |
|
void | flush () |
| | Flushes the serial port.
|
| |
| void | flush (const bool txOnly) |
| | Flushes the serial port.
|
| |
| size_t | write (const uint8_t d, const bool flush=true) |
| | Writes one byte.
|
| |
| size_t | write (const uint8_t *buffer, const size_t size, const bool flush=true) |
| | Writes bytes from buffer.
|
| |
| size_t | write (const char *buffer, const size_t size, const bool flush=true) |
| | Writes bytes from buffer.
|
| |
| size_t | write (const char *s, const bool flush=true) |
| | Writes a null-terminated string.
|
| |
| template<typename T , bool LittleEndian = true> |
| bool | readValue (T &value) |
| | Read a trivially copyable value.
|
| |
| template<typename T , bool LittleEndian = true> |
| bool | writeValue (const T value) |
| | Write a trivially copyable value.
|
| |
|
| virtual void | configure_dir_pin (const int8_t pin) |
| | One-time setup of the DIR pin as an output (called by begin()).
|
| |
| virtual void | set_transmit (const bool tx_enable) |
| | Switch the transceiver into transmit (true) or receive (false) mode.
|
| |
| virtual std::unique_ptr< ISerial > | make_serial (AdapterUART *ad) override |
| | Factory hook: build the concrete ISerial to be used by begin().
|
| |
|
int8_t | configured_dir_pin () const |
| |
|
| RS485Component (const uint8_t addr) |
| | Base constructor (concrete subclasses pass their DEFAULT_ADDRESS)
|
| |
|
ISerial * | iserial () |
| |
RS-485 unit using the SIT3088 transceiver (manual direction control via a DIR pin)