rt-thread icon indicating copy to clipboard operation
rt-thread copied to clipboard

RT-Thread is an open source IoT real-time operating system (RTOS).

Results 626 rt-thread issues
Sort by recently updated
recently updated
newest added

## 拉取/合并请求描述:(PR description) [ #### 为什么提交这份PR (why to submit this PR) - https://club.rt-thread.org/ask/question/d5c013f9637a6fda.html #### 你的解决方案是什么 (what is your solution) #### 请提供验证的bsp和config (provide the config and bsp) - BSP: - .config:...

## 拉取/合并请求描述:(PR description) 添加--cdb命令行参数以产生compile_commands.json文件,同时在vscode配置中也加入这个文件。 ### 当前拉取/合并请求的状态 Intent for your PR 必须选择一项 Choose one (Mandatory): - [ ] 本拉取/合并请求是一个草稿版本 This PR is for a code-review and is intended to get feedback...

## 拉取/合并请求描述:(PR description) [ #### 为什么提交这份PR (why to submit this PR) 解决libcpu/aarch64中secondary cpu启动函数`rt_hw_secondary_cpu_bsp_start`中对gic进行重新初始化出现的问题。 描述如下: 在未修改代码之前,`rt_hw_secondary_cpu_bsp_start`函数会调用`rt_hw_interrupt_init`函数来对gic进行初始化,但是调用`rt_hw_interrupt_init`来初始化gic会出现两个问题: - 会调用`rt_memset`清空isr_table[]数组里面的内容。将会造成系统在初始化过程中调用`rt_hw_interrupt_install`注册的中断处理函数失效。 - 会调用`arm_gic_dist_init`重新初始化gic分发器,该函数会失能所有中断。 所以secondary cpu使用`rt_hw_interrupt_init`函数对gic初始化是不妥的。 #### 你的解决方案是什么 (what is your solution) 将`rt_hw_interrupt_init`函数中部分代码抽出来。 #### 请提供验证的bsp和config...

aarch64的内核,我现在想移植rtt到一个虚拟机上作为guestOS。 ![image](https://github.com/RT-Thread/rt-thread/assets/126638805/04dd4b33-cb18-471b-930e-d52c34499970) 但是现在遇到一个问题就是不知道rtt在qemu的默认运行地址。想知道是哪个代码里面写了或者直接告诉我地址也行,谢谢大家。😘

## 拉取/合并请求描述:(PR description) [ #### 为什么提交这份PR (why to submit this PR) Remove compatible definition for v5.1.0 and before. #### 你的解决方案是什么 (what is your solution) #### 请提供验证的bsp和config (provide the config and...

## 拉取/合并请求描述:(PR description) [ #### 为什么提交这份PR (why to submit this PR) LOG_XXX是否输出应与RT_USING_DEBUG独立,否则如果关闭内核DEBUG,很多LOG也不能输出 #### 你的解决方案是什么 (what is your solution) #### 请提供验证的bsp和config (provide the config and bsp) - BSP: - .config: -...

## 拉取/合并请求描述:(PR description) #### 为什么提交这份PR (why to submit this PR) 添加了CH32V30系列适配RT-Thread的全速USB驱动。 Added full speed usb driver for CH32V30 series adapted to RT-Thread. 注:由于上一pr掺杂了无关的commit,故另开此新pr #### 请提供验证的bsp和config (provide the config and bsp)...

Current issue: The current rt_phy_ops API can not specify phy in multi-phy case Solution: Add one parameter phy to specify phy instance

## 拉取/合并请求描述:(PR description) [ #### 为什么提交这份PR (why to submit this PR) rt_hw_cpu_id() is an unsafe API which should not be used by most codes directly. It's error-prone because it must...

## 拉取/合并请求描述:(PR description) [ #### 为什么提交这份PR (why to submit this PR) The new rt_completion implemented by lockless algorithm can improve timer resolution for up to ~12%, compare to sem IPC....