prinThor 0.0.3

The highly reliable but not necessarily functional 3D Printer firmware
1
2
3
4
5
6
7
8
9
10
11
//! TODO: Still incomplete
//! Disclaimer: No generic interface (so far) for supporting more TFT/LCD drivers rather than ILI9341
pub(crate) mod display_task;

#[cfg(feature = "ili9341_spi")]
pub mod ili9341_spi;

#[cfg(feature = "ili9341_parallel")]
pub mod ili9341_parallel;

pub mod ui;