29 lines
600 B
Plaintext
29 lines
600 B
Plaintext
|
|
|
|
|
|
|
|
模拟出三个基站
|
|
|
|
|
|
模拟一条飞机的航线 一个列表 一堆轨迹点 算没到达一个位置与各个时间戳值
|
|
发送 做定位
|
|
|
|
|
|
|
|
# 使用 objcopy 命令将字符串嵌入到 ELF 文件的 .note 部分
|
|
echo -n "Author: John Doe\nVendor: MyCompany\nVersion: 1.0.0" > metadata.txt
|
|
|
|
# 将字符串内容直接嵌入 ELF 文件
|
|
objcopy --add-section .note.metadata=metadata.txt ./rls_cxx_Linux_Debug
|
|
|
|
|
|
readelf -d
|
|
|
|
|
|
readelf -p .info./rls_cxx_Linux_Debug
|
|
readelf -S ./rls_cxx_Linux_Debug
|
|
|
|
|
|
objdump -s --section=.note.metadata ./rls_cxx_Linux_Debug
|
|
objdump -s ./rls_cxx_Linux_Debug
|