Skip to content

Commit

Permalink
Remove the no longer used modem mod
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Oct 5, 2024
1 parent f39c387 commit 2bf329e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 216 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ extern crate alloc;
pub mod eth;
#[cfg(feature = "edge-mdns")]
pub mod mdns;
//pub mod modem;
pub mod netif;
pub mod network;
pub mod persist;
Expand Down
212 changes: 0 additions & 212 deletions src/modem.rs

This file was deleted.

9 changes: 6 additions & 3 deletions src/wireless.rs
Original file line number Diff line number Diff line change
Expand Up @@ -499,11 +499,13 @@ where
{
type Data = T;

type Netif<'a> = &'a mut N
type Netif<'a>
= &'a mut N
where
Self: 'a;

type Controller<'a> = DisconnectedController<T>
type Controller<'a>
= DisconnectedController<T>
where
Self: 'a;

Expand All @@ -530,7 +532,8 @@ mod bluez {
}

impl<'a> Ble for BuiltinBle<'a> {
type Peripheral<'t> = BuiltinGattPeripheral
type Peripheral<'t>
= BuiltinGattPeripheral
where
Self: 't;

Expand Down

0 comments on commit 2bf329e

Please sign in to comment.