|
M5Unit-RS485 0.1.0 git rev:8a0af48
|
M5Stack Tab5 built-in RS-485 (SIT3088 with DIR pin fixed to GPIO34) More...
#include <M5UnitUnifiedRS485.hpp>
Additional Inherited Members | |
Public Member Functions inherited from m5::unit::UnitSIT3088 | |
| 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. | |
Public Member Functions inherited from m5::unit::RS485Component | |
| 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. | |
Protected Member Functions inherited from m5::unit::UnitSIT3088 | |
| 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 |
Protected Member Functions inherited from m5::unit::RS485Component | |
| RS485Component (const uint8_t addr) | |
| Base constructor (concrete subclasses pass their DEFAULT_ADDRESS) | |
| ISerial * | iserial () |
Static Protected Member Functions inherited from m5::unit::RS485Component | |
| template<typename T > | |
| static T | byteswap_if_needed (T v) |
| template<typename T > | |
| static T | byteswap_if_needed_impl (T v, byteswap_int_tag) |
| template<typename T > | |
| static T | byteswap_if_needed_impl (T v, byteswap_float_tag) |
| template<typename T > | |
| static T | byteswap_if_needed_impl (T v, byteswap_none_tag) |
Protected Attributes inherited from m5::unit::RS485Component | |
| std::unique_ptr< ISerial > | _serial {} |
| config_t | _cfg {} |
M5Stack Tab5 built-in RS-485 (SIT3088 with DIR pin fixed to GPIO34)
Thin UnitSIT3088 subclass that bakes the Tab5-specific DIR pin (G34) into config() so that Tab5BuiltinRS485 unit; alone yields a ready-to-begin instance. The wiring helper m5::unit::rs485::wiring::addTab5BuiltinRS485UART still handles Serial pins and baud.