fix suddenly ending comment

This commit is contained in:
Ulf Lilleengen 2023-12-20 12:06:49 +01:00
parent abea4dde3d
commit 89cfdcb9f5

View File

@ -97,14 +97,14 @@ enum InterfaceType {
const MAX_SPI_BUFFER_SIZE: usize = 1600;
const HEARTBEAT_MAX_GAP: Duration = Duration::from_secs(20);
/// Shared driver state.
/// State for the esp-hosted driver.
pub struct State {
shared: Shared,
ch: ch::State<MTU, 4, 4>,
}
impl State {
/// Shared state for the
/// Create a new state.
pub fn new() -> Self {
Self {
shared: Shared::new(),