common: Move panic handler out of libcommon.
[gps-watch.git] / src / common / lib.rs
index 7828fea3224f237605130d4ceae19926009f3dfc..69cd7be4f8110e80219421339682585e92ed4a85 100644 (file)
@@ -31,15 +31,15 @@ pub mod clock;
 pub mod systick;
 pub mod port;
 pub mod gpio;
+pub mod i2c;
+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;