X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fcommon%2Flib.rs;h=a9c4f90bfc5c4f49daa8acab6eb745b62247a77f;hb=73ec717bd09ad251dcd65ff3c5083d65cec77da3;hp=c3b23bf5da5883a8d773c9d1afbc10272bcb2e84;hpb=e44d325020a027013b5518aad1c059d3d0d5ad16;p=gps-watch.git diff --git a/src/common/lib.rs b/src/common/lib.rs index c3b23bf..a9c4f90 100644 --- a/src/common/lib.rs +++ b/src/common/lib.rs @@ -32,16 +32,20 @@ pub mod systick; pub mod port; pub mod gpio; pub mod i2c; +pub mod spi; +pub mod uart; pub mod watchdog; pub mod crc32; +pub mod ringbuf; pub mod buffer; pub mod usb_serial; - -use core::panic::PanicInfo; - -#[inline(never)] -#[panic_handler] -fn panic(_info: &PanicInfo) -> ! { - loop { - } -} +pub mod screen; +pub mod display; +pub mod gps; +pub mod fmt; +pub mod time; +pub mod storage; +pub mod mx25l; +pub mod shell; +pub mod yencode; +pub mod varint;