Add touchscreen support with onscreen keyboard (#1)

Possible that framebuffer doesn't update without actual keypress (eg, volume down). But, works.
This commit is contained in:
Jon Dough
2025-02-10 05:03:49 +00:00
committed by GitHub
parent 8d0a317819
commit cc34a54cd9
13 changed files with 536 additions and 72 deletions

View File

@@ -12,6 +12,7 @@ fn main() {
height: fb.var_screen_info.yres_virtual as usize,
bytes_per_pixel,
stride: fb.fix_screen_info.line_length as usize / bytes_per_pixel,
old_stride: None,
};
init(fb, fb_info);