platform: add chip_id function to board api

This commit is contained in:
2024-12-14 11:07:34 +01:00
parent e57ceeb149
commit b6e34111ff
2 changed files with 11 additions and 2 deletions

View File

@@ -20,4 +20,5 @@ pub trait Board {
fn output(&mut self) -> Self::Output;
fn surfaces(&mut self) -> Self::Surfaces;
fn system_tasks(&mut self) -> Self::Scheduler;
fn chip_id() -> u64;
}