common: Add the shell module.
[gps-watch.git] / src / common / lib.rs
index 61d8f797da3887ab3d411db998859e14b22d8e7b..dd33c6809466543026e26a0b645dc77e30d9f7be 100644 (file)
@@ -32,19 +32,18 @@ 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;
 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;