X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fcommon%2Flib.rs;h=384543ecbd2866bea30a069603cb33140cb0df98;hb=0a39b1668c8437a34187fbb6166c7d56986cbb3d;hp=2cae469cae338305e7f4c021aaa28ad0e51472e6;hpb=0ed02a94b60d886b568f4803a7ec09eef29ad1ca;p=gps-watch.git diff --git a/src/common/lib.rs b/src/common/lib.rs index 2cae469..384543e 100644 --- a/src/common/lib.rs +++ b/src/common/lib.rs @@ -32,6 +32,7 @@ pub mod systick; pub mod port; pub mod gpio; pub mod i2c; +pub mod spi; pub mod uart; pub mod watchdog; pub mod crc32; @@ -41,12 +42,9 @@ pub mod usb_serial; pub mod screen; pub mod display; pub mod gps; - -use core::panic::PanicInfo; - -#[inline(never)] -#[panic_handler] -fn panic(_info: &PanicInfo) -> ! { - loop { - } -} +pub mod fmt; +pub mod time; +pub mod storage; +pub mod mx25l; +pub mod shell; +pub mod yencode;