firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
1#![no_std]
2
3#[cfg(feature = "embedded-graphics")]
4pub mod eg;
5
6pub use tp370pgh01::IMAGE_BYTES;
7
8#[repr(C)]
9#[derive(Copy, Clone)]
10pub struct ProgramFunctionTable {
11 pub write_image: extern "C" fn(&[u8; IMAGE_BYTES]),
12 pub refresh: extern "C" fn(),
13 pub refresh_fast: extern "C" fn(),
14}