Skip to content

Commit

Permalink
Make example compile
Browse files Browse the repository at this point in the history
  • Loading branch information
MathiasKoch committed Mar 28, 2020
1 parent 27bcaff commit 373672c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/linux.rs
Expand Up @@ -53,10 +53,11 @@ fn main() {
.expect("Could not open serial port");
let mut serial_rx = serial_tx.try_clone().expect("Failed to clone serial port");

let (cell_client, mut ingress) = atat::new::<_, SysTimer>(
let (cell_client, mut ingress) = atat::new::<_, SysTimer, atat::NoopUrcMatcher>(
Serial(serial_tx),
SysTimer::new(),
atat::Config::new(atat::Mode::Timeout),
None
);

let gsm = GSMClient::<_, Pin, Pin>::new(cell_client, GSMConfig::new());
Expand Down

0 comments on commit 373672c

Please sign in to comment.