piaoger / modbus-core

A pure no-std Rust modbus library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

modbus-core

A no-std Rust modbus library.

Crates.io version Docs Security audit Continuous integration

Installation

Add this to your Cargo.toml:

[dependencies]
modbus-core = "*"

If you like to use Modbus TCP only:

[dependencies]
modbus-core = { version = "*", default-features = false, features = ["tcp"] }

If you like to use Modbus RTU only:

[dependencies]
modbus-core = { version = "*", default-features = false, features = ["rtu"] }

Protocol-Specification

License

Copyright 2018-2021 slowtec GmbH

MIT/Apache-2.0

About

A pure no-std Rust modbus library

License:Apache License 2.0


Languages

Language:Rust 100.0%