feat(kernel): Add logging to the kernel (#2)

This PR will allow the kernel to have a simple logging using a FrameBuffer created by the bootloader crate.

Reviewed-on: #2
This commit is contained in:
2025-07-21 22:58:31 +02:00
parent f0ae99f652
commit d8159a373e
6 changed files with 331 additions and 1 deletions

View File

@@ -10,3 +10,17 @@ publish.workspace = true
[dependencies]
bootloader_api = { version = "0.11.10" }
conquer-once = { version = "0.3.2", default-features = false }
log = "0.4.17"
spinning_top = "0.2.4"
[dependencies.noto-sans-mono-bitmap]
version = "0.2.0"
default-features = false
features = [
"regular",
"size_16",
"unicode-basic-latin",
# required for the fallback char '<27>'
"unicode-specials",
]