### Verify MODBUS RTU Service Daemon Status Source: https://docs.esix.co/application-note/other/modbus-rs485 This snippet shows how to verify if the MODBUS RTU service daemon (mbusd) is running correctly on the Xatellite device by checking the system log. A successful start is indicated by a log message like '.....:mbusd-0.4.0 started...'. ```log Fri Oct 25 16:51:18 2024 daemon.err mbusd[20139]: 25 Oct 2024 16:51:18 mbusd-0.4.0 started... Fri Oct 25 16:51:40 2024 daemon.err mbusd[20139]: 25 Oct 2024 16:51:40 Terminated by signal: SIGTERM Fri Oct 25 16:53:26 2024 daemon.err mbusd[20345]: 25 Oct 2024 16:53:26 mbusd-0.4.0 started... ``` -------------------------------- ### Enable MODBUS RTU Service on Xatellite Source: https://docs.esix.co/application-note/other/modbus-rs485 This snippet demonstrates the configuration steps to enable a MODBUS RTU service on a Xatellite device via its web administration interface. It involves navigating to the RS485/ModBus section, adding a new service, and ensuring the 'Enabled' checkbox is selected. The serial device is typically set to '/dev/ttyCH9344USB0'. ```text Login into the Xatellite's Web administration page and go to "Services/RS485/ModBus": and click the "ADD" button to create a ModBus RTU service (RS485 over TCP): NOTE: * Don't forget to check the "Enabled" checkbox to enable this service * The Serial Device should be always "/dev/ttyCH9344USB0" Once the above parameters are set and click the "SAVE" button, you will see: Finally, click the "SAVE & APPLY" button. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.