brainwires-hardware 0.10.0

Hardware I/O for the Brainwires Agent Framework — audio, GPIO, Bluetooth, and network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Cluster server implementations for required Matter commissioning clusters.
///
/// Each sub-module implements [`ClusterServer`](super::ClusterServer) for one cluster:
///
/// | Module                      | Cluster ID | Description                               |
/// |-----------------------------|-----------|-------------------------------------------|
/// | [`basic_information`]       | 0x0028     | Device identity attributes                |
/// | [`general_commissioning`]   | 0x0030     | FailSafe, regulatory config               |
/// | [`operational_credentials`] | 0x003E     | NOC, fabrics, attestation                 |
/// | [`network_commissioning`]   | 0x0031     | Network interface config (on-network)     |
pub mod basic_information;
pub mod general_commissioning;
pub mod network_commissioning;
pub mod operational_credentials;