1 Star 0 Fork 12

xu6158/protothreads

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
section_locate.h 529 Bytes
一键复制 编辑 原始数据 按行查看 历史
kalimdorsummer 提交于 2021-01-31 21:50 . version: v0.97
#ifndef SECTION_LOCATE_H__
#define SECTION_LOCATE_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
typedef void (*func)(void);
typedef uint32_t *func_name;
struct func_pack {
func func_addr;
func_name name_str;
};
#define PLACE_FUNC_AT_SEC(func) \
static char name[30] = #func; \
struct func_pack sec_##func __attribute__ ( ( section ( "func_area" ) ) ) = { \
.func_addr = func, \
.name_str = (uint32_t *)&name, \
}
#ifdef __cplusplus
}
#endif
#endif // SECTION_LOCATE_H__
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/xu6158/c_language_program_template.git
git@gitee.com:xu6158/c_language_program_template.git
xu6158
c_language_program_template
protothreads
master

搜索帮助