X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fcommon%2Flib.rs;h=e7fb3611f38b56e7257dc44050978cb38e609b69;hb=9bc6fc2996255514e0d49e3da0655e2f93f14d8c;hp=e38ff52cf453971e4da618256bf09d7a8e2262ed;hpb=5ce31f22fe4ea2e7a35d9e4ea6cf3cbcd5e8ab2a;p=gps-watch.git diff --git a/src/common/lib.rs b/src/common/lib.rs index e38ff52..e7fb361 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; @@ -43,12 +44,9 @@ pub mod display; pub mod gps; pub mod fmt; pub mod time; - -use core::panic::PanicInfo; - -#[inline(never)] -#[panic_handler] -fn panic(_info: &PanicInfo) -> ! { - loop { - } -} +pub mod storage; +pub mod mx25l; +pub mod shell; +pub mod yencode; +pub mod varint; +pub mod logger;