Modbus RTU implementation. Part of stm32libs
Go to file
2024-10-11 17:33:25 +02:00
.veles_metadata Added .veles_metadata 2022-07-01 21:04:16 +02:00
LICENSE Added license 2024-10-11 17:33:05 +02:00
modbus.c Added license 2024-10-11 17:33:05 +02:00
modbus.h Added license 2024-10-11 17:33:05 +02:00
README.md Updated README 2024-10-11 17:33:25 +02:00

Modbus slave RTU library

Simple implementation of Modbus RTU. (Does NOT support ASCII and TCP).

Usage

  1. Implement functions modbus_callback_function() and modbus_uart_transmit_function()
    • modbus_uart_transmit_function() sends data via UART
    • modbus_callback_function() does the real work: read sensors, set outputs...

note that when filling buffers (e.g. input_registers[]) user must ensure that all data is big-endian. These functions are implementation-specific.

  1. Set device address (variable modbus_device_address); you can do this either
    • setting modbus_device_address directly (modbus.h needs to be included, duh)
    • using modbus_set_device_address(uint8_t address) function

Or you can leave address as-is (MODBUS_DEFAULT_SLAVE_ADDRESS) and set it via Modbus during runtime

  1. Call modbus_process_msg() after message reception; you need to observe Modbus RTU timing:
    • pauses between chars in frame are less or equal to 1.5 char
    • pauses between frames are at least 3.5 chars (of silence)

For more information see section 2.5.1.1 (MODBUS Message RTU Framing) in "MODBUS over Serial Line: Specification and Implementation Guide"

Note that byte order is big endian.

License

This project is licensed under the MIT License. See the LICENSE file for details.