common: Add the spi module.
[gps-watch.git] / src / common / lib.rs
index 17a35872e547beab28f6d6f34ffabe711605a482..c74704c4ef5612b9f7803e31c146d6d0c030f2e8 100644 (file)
@@ -30,15 +30,17 @@ pub mod nvic;
 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;