common: Add the varint module.
[gps-watch.git] / src / common / lib.rs
index 0c179fce0f3469f3cec82ce4226963874c3b4b64..a9c4f90bfc5c4f49daa8acab6eb745b62247a77f 100644 (file)
@@ -31,16 +31,21 @@ pub mod clock;
 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;