Project Options->Linker->Input->Raw binary image
选择文件,填变量名,段名,对齐,如 symbol_0, .text, 4
还要在Keep symbols中填上对应的变量名
symbol_0
然后就可以在 源文件 中使用此变量
extern unsigned int symbol_0;
extern unsigned char symbol_0[128];
如果需要包含多个文件, 需要使用命令行实现
Project Options->Linker->Input->Raw binary image
选择文件,填变量名,段名,对齐,如 symbol_0, .text, 4
还要在Keep symbols中填上对应的变量名
symbol_0
然后就可以在 源文件 中使用此变量
extern unsigned int symbol_0;
extern unsigned char symbol_0[128];
如果需要包含多个文件, 需要使用命令行实现