X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fcommon%2Flib.rs;h=67f26484bc66a35478e44ac4674b61a8c115e679;hb=671d6a8482ac742b897913ec6975910ed5fa273c;hp=2f7d8944c64935c531bca68061e228f9482d810c;hpb=00f7e3a2c957f387745dbd4ed3cf7834e5006513;p=gps-watch.git diff --git a/src/common/lib.rs b/src/common/lib.rs index 2f7d894..67f2648 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; @@ -40,12 +41,13 @@ pub mod buffer; pub mod usb_serial; pub mod screen; pub mod display; - -use core::panic::PanicInfo; - -#[inline(never)] -#[panic_handler] -fn panic(_info: &PanicInfo) -> ! { - loop { - } -} +pub mod gps; +pub mod fmt; +pub mod time; +pub mod storage; +pub mod mx25l; +pub mod shell; +pub mod yencode; +pub mod varint; +pub mod logger; +pub mod fixed15_49;