From 373672c6c6768d968aed36df0622e6ff43eacde7 Mon Sep 17 00:00:00 2001 From: Mathias Koch Date: Sat, 28 Mar 2020 16:50:54 +0100 Subject: [PATCH] Make example compile --- examples/linux.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/linux.rs b/examples/linux.rs index d476fd2..194e463 100644 --- a/examples/linux.rs +++ b/examples/linux.rs @@ -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());