1 Star 0 Fork 1

蔡广/FreeRTOSLinux

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
freertos_linux.ld 433 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
* Linker script extension of the FreeRTOS Linux Port
*
* Add `-T freertos_linux.ld` to the linker flags
*
* Allows reinitialization of static FreeRTOS variables at runtime (if they are
* stored at this section.)
*
*/
SECTIONS
{
.free_rtos : {
. = ALIGN(8);
PROVIDE(__free_rtos_start__ = .);
*(free_rtos)
. = ALIGN(8);
PROVIDE(__free_rtos_stop__ = .);
}
}
INSERT AFTER .bss
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/caiguang1997/FreeRTOSLinux.git
git@gitee.com:caiguang1997/FreeRTOSLinux.git
caiguang1997
FreeRTOSLinux
FreeRTOSLinux
master

搜索帮助