rt-thread
rt-thread copied to clipboard
RT-Thread is an open source IoT real-time operating system (RTOS).
### RT-Thread Version master ### Hardware Type/Architectures N/A ### Develop Toolchain Other ### Describe the bug 以前都是参考的 .github/workflows/action_utest.yml 里写的链接。但是今天发现文件里的链接 `https://github.com/RT-Thread/toolchains-ci/releases/download/v1.7/riscv64-linux-musleabi_for_x86_64-pc-linux-gnu_latest.tar.bz2` 并不能用来编译 app。 所以想知道官方的 URL。可以得到同时可以用于编译 kernel 和 app 的 musl gcc...
## 拉取/合并请求描述:(PR description) [ #### 为什么提交这份PR (why to submit this PR) #10056 #### 你的解决方案是什么 (what is your solution) #### 请提供验证的bsp和config (provide the config and bsp) - BSP: riscv/K230 - .config:...
### RT-Thread Version 2f559906d6202c27142237ab4b1d893034a5b7c3 ### Hardware Type/Architectures arm32 ### Develop Toolchain GCC ### Describe the bug ### Expected Behavior: The `rt_hw_atomic_load` function should successfully perform an atomic load operation on...
## 测试 背景: RTT 目前针对主线自动化测试看护粒度需要细化,一些驱动、组件的PR需要加入到测试中进行看护; 详见此issue:https://github.com/RT-Thread/rt-thread/issues/9775 - [ ] UTest 测试用例完善(内核、外设) #10661 #10680 - [ ] 添加代码覆盖率(集成ci中) - [ ] 自动打TAG #9347 ## 组件 - [ ] UORB:用于线程间 / 进程间订阅发布机制通信...
### RT-Thread Version master ### Hardware Type/Architectures N/A ### Develop Toolchain Other ### Describe the bug 搜索关键字:“General Public License” ### Other additional context _No response_
### Describe problem solved by the proposed feature 目前RISC-V的toolchain版本比较多,这里加一些讨论,讨论哪些toolchain版本是比较通用和官方的,方便后续RISC-V平台整理和使用比较统一的版本。 大家可以提供一些自己常用的RISCV的toolchain的下载路径和RISCV平台的详细信息。 ### Describe your preferred solution _No response_ ### Describe possible alternatives _No response_
[Descriptions]: 1. Support POSIX pthread extension function pthread_mutex_timedlock ## 拉取/合并请求描述:(PR description) [ 添加了pthread_mutex_timedlock接口支持 #### 为什么提交这份PR (why to submit this PR) POSIX标准中有对该接口的支持和描述 #### 你的解决方案是什么 (what is your solution) 参照pthread_mutex_lock,依据POSIX标准中对该线程库接口的描述,添加pthread_mutex_timedlock,支持带超时的互斥锁获取 #### 请提供验证的bsp和config...
## 拉取/合并请求描述:(PR description) [ #### 为什么提交这份PR (why to submit this PR) The original code is subject to XXE attacks. #### 你的解决方案是什么 (what is your solution) **Add:** `from defusedxml.ElementTree import parse`...
[Descriptions]: 1. Make these functions public to avoid code duplication and allow direct usage by other components. 2. Apply clang-format for consistent code style. [Root Cause]:NA [Side Effects]:NA ## 拉取/合并请求描述:(PR...
### Describe problem solved by the proposed feature 我使用mmap()的例程如下: ```c #include #include #include #include #include #include int main(int argc, char *argv[]) { #ifdef _SC_MAPPED_FILES long result = sysconf(_SC_MAPPED_FILES); if (result...