common: Add the fixed15_49 module.
[gps-watch.git] / src / common / lib.rs
index b1fd694e04a895c5650d919a7374699b97c15950..67f26484bc66a35478e44ac4674b61a8c115e679 100644 (file)
 pub mod register;
 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;
+pub mod storage;
+pub mod mx25l;
+pub mod shell;
+pub mod yencode;
+pub mod varint;
+pub mod logger;
+pub mod fixed15_49;