Supper Thomas
Supper Thomas
https://github.com/supperthomas/RTTHREAD_SEGGER_TOOL/blob/507864af2439c87d462c633985bc16add6dde2fc/SConscript#L11 感觉这里可以加个是否用SEGGER 官方仓库的Kconfig,默认添加,用户可以选择不添加。
- #9424 这个doxygen还有很多未更新的地方,汪老师可以PR维护一下。
 http://rt-thread.github.io/rt-thread/group___drivers.html 我觉得这部分应该还是不是很完善的。 参考下面链接中的文件 https://github.com/RT-Thread/rt-thread/tree/master/components/drivers https://github.com/RT-Thread/rt-thread/tree/master/components/drivers/include/drivers
https://jothepro.github.io/doxygen-awesome-css/ 这个doxygen挺漂亮的。
看到一个中英文的readthedoc,可以参考一下。 https://github.com/hpmicro/hpm_sdk/tree/main/docs 英文 https://hpm-sdk.readthedocs.io/en/latest/ 中文 https://hpm-sdk.readthedocs.io/zh-cn/latest/  仅供参考,没有其他建议。
非常赞同该提案。形式的话,我建议yaml文件,看上去比json文件更直观一些,也方便修改。图形化UI也方便 可以参考studio的yaml文件。 https://github.com/RT-Thread-Studio/sdk-bsp-stm32f407-spark/blob/main/sdk-bsp-rt-spark.yaml
https://github.com/zh30/git-commit-analyzer git commit AI自动生成小工具
这里反馈一下,在使用posix的时候,有些代码中的类型很大概率可能索引到toolchain中的头文件,比如目前bsp中的任意bsp都会包含components\libc\compilers\common\ctime.c, 这个函数中clock_t 的类型在rtthread的代码中未找到定义,很大概率有些平台编译不过。 ``` rt_weak clock_t clock(void) { return rt_tick_get(); // TODO should return cpu usage time } RTM_EXPORT(clock); ```
``` # scons scons: Reading SConscript files ... scons: done reading SConscript files. scons: Building targets ... scons: building associated VariantDir targets: build CC build\applications\main.o In file included from J:\02_project\01_repo\github\ci_file\rt-thread\components\libc\compilers\common\include/sys/time.h:18,...
