Crates.io | embedded-update |
lib.rs | embedded-update |
version | 0.12.0 |
source | src |
created_at | 2022-06-08 10:02:19.413765 |
updated_at | 2023-10-06 08:09:13.681271 |
description | Firmware updates for embedded devices supporting multiple update services |
homepage | https://drogue.io |
repository | https://github.com/drogue-iot/embedded-update |
max_upload_size | |
id | 601970 |
size | 57,863 |
The embedded-update
crate implements a firmware update protocol for embedded devices connected to a firmware update service, which works in no_std
(bare metal) environments.
Both the device to be updated and the update service are pluggable, so the protocol can be used with any device or service that implements the provided traits. This means you can use the library directly on an embedded device, or on a gateway that proxies multiple devices.
The library provides the InMemory
and Serial
reference implementations of the UpdateService
trait, and the Simulator
and Serial
implementations for the FirmwareDevice
trait.
Update service and device implementations can be added to embedded-update
when types and traits for interacting with device flash and network connections are more widely available.
Serial
- implements a serial update protocol for a device, that can be used over UART, USB Serial etc.InMemory
- implements a hard coded update service that serves an update from memory.See drogue-device for additional update service implementations.
Serial
- implements a serial update protocol allowing to talk to a device implementing this protocol over UART, USB Serial etc.Simulated
- implements a simulated device for testing update services.See drogue-device for additional device implementations.
embedded-update
requires two features from nightly
to compile when using the nightly
flag.