Skip to content

A pure no-std Rust modbus library

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

slowtec/modbus-core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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-2024 slowtec GmbH

MIT/Apache-2.0