我有一个静态常量,我想放置在我的 MCU 的特定内存区域中,并且该程序是用 Rust 为 ARM stm32m4 MCU 编写的。
在我的测试用例中,我将变量定义为:
#[link_section = ".device_info"]
static DEVINFO: &'static str = "This is in the correct place no?";
在我的memory.x
文件中,我指定了:
MEMORY
{
FLASH : org = 0x08000000, len = 15k
DEVICE_INFO : org = 0x08003C00, len = 1k
EEPROM : org = 0x08004000, len = 16k
..Others
}
SECTIONS {
.device_info : {
*(.device_info);
. = ALIGN(4);
} > DEVICE_INFO
} INSERT AFTER .text;
这建立了,但是当我检查我的输出文件时,我想找到"This is in the correct place no?"
位于的文本0x8003c00
,但是当我用这个搜索时:
arm-none-eabi-objdump target/thumbv7em-none-eabihf/debug/binaryfile -s | rg -C4 This
它把它作为输出:
8001b80 401b0008 2b000000 6b1b0008 15000000 @...+...k.......
8001b90 59010000 15000000 00000000 00000000 Y...............
8001ba0 696e6465 78206f75 74206f66 20626f75 index out of bou
8001bb0 6e64733a 20746865 206c656e 20697320 nds: the len is
8001bc0 54686973 20697320 696e2074 68652063 This is in the c
8001bd0 6f727265 63742070 6c616365 206e6f3f orrect place no?
8001be0 4e6f2076 616c6964 20666972 6d776172 No valid firmwar
8001bf0 65737372 632f6c69 622e7273 e01b0008 essrc/lib.rs....
8001c00 12000000 f21b0008 0a000000 ac000000 ................
8003c00
编译时如何获取要存储的字符串?或者这件事有什么价值?
基本上,最后,我想在该特定位置存储一个更大的结构,因为这是我的引导加载程序,我想稍后从我的应用程序代码中读取该结构的值。