From 53c778ae2d4d728b64c3021f040448a0d489bbdd Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 14 Jun 2019 15:53:01 +0800 Subject: [PATCH] runtime: fix previous commit --- artiq/firmware/runtime/rtio_clocking.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/firmware/runtime/rtio_clocking.rs b/artiq/firmware/runtime/rtio_clocking.rs index c979f9189..6cc590fa1 100644 --- a/artiq/firmware/runtime/rtio_clocking.rs +++ b/artiq/firmware/runtime/rtio_clocking.rs @@ -140,7 +140,7 @@ pub fn init() { { match get_rtio_clock_cfg() { RtioClock::Internal => setup_si5324_as_synthesizer(), - RtioClock::External => si5324::bypass(si5324::Input::Ckin2) + RtioClock::External => si5324::bypass(si5324::Input::Ckin2).expect("cannot bypass Si5324") } }