mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-23 20:51:31 +11:00
rom function git_revision() does return an u32, not a &str
This commit is contained in:
parent
d6231bd3ec
commit
5494ce7539
|
@ -144,9 +144,9 @@ pub fn copyright_string() -> &'static str {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The 8 most significant hex digits of the Bootrom git revision.
|
/// The 8 most significant hex digits of the Bootrom git revision.
|
||||||
pub fn git_revision() -> &'static str {
|
pub fn git_revision() -> u32 {
|
||||||
let s: *const u8 = rom_table_lookup(DATA_TABLE, *b"GR");
|
let s: *const u32 = rom_table_lookup(DATA_TABLE, *b"GR");
|
||||||
unsafe { convert_str(s) }
|
unsafe { *s }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The start address of the floating point library code and data. This and fplib_end along with the individual
|
/// The start address of the floating point library code and data. This and fplib_end along with the individual
|
||||||
|
|
Loading…
Reference in a new issue