X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fcommon%2Flib.rs;h=72b261a3e14f2717e76f66aee0d921b22a6f0c4e;hb=bf60d7cf069a190b6d0310cc9682a6041d2f831d;hp=b1fd694e04a895c5650d919a7374699b97c15950;hpb=09affce6a84f2048c678e442908413c92a6431fd;p=gps-watch.git diff --git a/src/common/lib.rs b/src/common/lib.rs index b1fd694..72b261a 100644 --- a/src/common/lib.rs +++ b/src/common/lib.rs @@ -28,14 +28,21 @@ 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;