Research window: Past 24 hours (2026-09-22 11:00 ~ 2026-09-23 11:00 Beijing time) Sources: RT-Thread official news API, community forum article API, GitHub (org: RT-Thread main repo commits / PR / Issue / Releases, env toolchain repo, package index repo, device support package org, Studio BSP SDK org, GD32 downstream repo, topic:rt-thread ecosystem repos and name search), Google News aggregation (zh-CN / en-US, via proxy), Chinese industry media


Index

  • I. Kernel and Release Updates
    • Eight proposals added to the review queue in a single night: seven-part series hardening existing defects, WCH CH32V203 board support fills a gap (09-22)
    • Official news API sees no new entries for the 34th consecutive day (09-23)
  • II. Official and Community Events
    • CIIF Workshop details announced: October 13 session, 25 smart car teaching kits (09-22)
  • III. Ecosystem and Vendor Porting
    • Renesas RA8P1 Titan Mini OpenMV project optimized: SDRAM clock and memory pool adjustments cut inference time significantly (09-22)
    • GDR 2026.03 released: RT-Thread debug assistant framework adds object commands and help system (09-22)
    • GD32 downstream repo driver update branch advances: PR #71 refreshed and enters review discussion (09-22)
  • IV. Industry Applications
    • No new deployment cases in the window; CIIF exhibits represent the latest industry-side activity (09-23)
  • V. Summary and Trend Observations
    • Trends over the past day (09-22 ~ 09-23)
    • Limitations and deduplication notes
  • Appendix: Source verification table

I. Kernel and Release Updates

1.1 Eight proposals added to the review queue in a single night: seven-part series hardening existing defects, WCH CH32V203 board support fills a gap (09-22)

Date: 2026-09-22 18:03 ~ 18:31 (Beijing time, proposal times) Source: PR #11820, PR #11827

Eight proposals (#11820 ~ #11827) were added to the review queue in a single night within the window — the most concentrated batch of submissions in recent memory. Seven come from the same contributor and form a systematic series hardening existing defects: two-wire serial bus controller and transfer mutex (#11820, fixes #11524), power management paired restore by device suspend mode (#11821, fixes #11046), USB host interface count boundary (#11822, fixes #11288), IPC message queue path terminator boundary (#11823, fixes #11292), block device logical partition out-of-bounds read/write (#11824, related to #11286), STM32 OpenAMP receive buffer boundary and ring wraparound (#11825, fixes #11299), and virtio input offset validation (#11826, fixes #10379, #10380). All seven reference defect reports filed months ago and include verification notes for GCC 16.1 host builds and boundary test cases, constituting a concentrated cleanup of long-standing legacy issues. The eighth is board support for the Qinheng WCH CH32V203C8T6-EVT-R0 (#11827): this part is a RISC-V microcontroller with a Qingke V4B core (64KB zero-wait-state Flash, 20KB SRAM), and the mainline previously had no corresponding BSP. The proposal adds the project skeleton, D6 vector table, linker script, and watchdog example, and patches the issue where the official SDK package exits the build directly for the D6 variant.

1.2 Official news API sees no new entries for the 34th consecutive day (09-23)

Date: 2026-09-23 (verification time) Source: RT-Thread official news API

The official news API (rt_org category) still holds 5 old entries, the latest still being the 2026-06-17 Abu Dhabi investment forum report — no new entries for the 34th consecutive day. The official website news list page still returned a loading failure notice when checked within the window, so it could not be read directly. The mainline has seen no new merges since the concentrated batch on Monday afternoon (09-21), and no proposals were closed or merged within the window; all current activity is concentrated in the review queue and vendor-side repositories.

II. Official and Community Events

2.1 CIIF Workshop details announced: October 13 session, 25 smart car teaching kits (09-22)

Date: 2026-09-22 (report time) Source: AI Cloud News report

Industry media published detailed information on the on-site Workshop at CIIF, adding session and content details to the recruitment notice covered in the previous issue (09-20): the 26th China International Industry Fair is scheduled for October 12 ~ 16 at the National Exhibition and Convention Center (Shanghai), and RT-Thread’s “AI Edge Smart Car Hands-On Workshop” is set for October 13 (Tuesday) 13:00 ~ 17:00. The course centers on hands-on practice, with participants in pairs of two and 25 smart car teaching kits provided, led throughout by senior engineers. The agenda covers hardware detection, system boot, peripheral debugging, real-time control, SLAM mapping, autonomous navigation, camera calibration, multimodal visual following, and an AR integrated exercise, involving on-site debugging of LiDAR, IMU, and depth cameras. The venue will also showcase industrial control equipment, mobile robots, embodied intelligence, and flight control units built on the same underlying platform. Session and registration details are subject to the organizer’s subsequent announcements.

III. Ecosystem and Vendor Adaptation

3.1 Renesas RA8P1 Titan Mini Optimizes OpenMV Project: SDRAM Clock and Memory Pool Adjustments Yield Significant Inference Time Reduction (09-22)

Date: 2026-09-22 16:09 / 16:36 (Beijing Time, commit time) Source: Performance optimization commit, Performance data update commit

The Renesas RA8P1 Titan Mini repository under the Studio BSP organization pushed two OpenMV project optimization commits within the window. The first adjusts external SDRAM timing and clock configuration (refresh wait parameters, BCLKA divider), and completes the SDCLK selector initialization sequence via source override, fixing a known limitation of the chip configuration tool. The second expands the on-chip SRAM primary garbage collection pool from 1344 KiB to 1472 KiB, improving the memory layout of the large model workspace. Measured performance updated alongside the commits shows: Tiny YOLOv2 INT8 416×416 single inference dropped from 156.10 ms to 58.49 ms (approximately 2.7×), YOLOv8n 256×256 from 186.54 ms to 38.33 ms (approximately 4.9×), and 320×320 from 310.29 ms to 287.49 ms. This project had just completed its OpenMV release pipeline and continuous integration on 09-18; this period represents the post-release performance consolidation. EE Times China published a follow-up report the same day (“1 GHz MCU + NPU, Python Ready! Titan Mini’s OpenMV Update Is Here”); the original site is access-restricted, link in appendix.

3.2 GDR 2026.03 Released: RT-Thread Debug Assistant Framework Adds Object Commands and Help System (09-22)

Date: 2026-09-22 (release date) Source: GDR 2026.03

The third-party GDB debug assistant framework GDR released version 2026.03 within the window. The framework runs inside GDB’s Python interpreter and provides three layers of support for RT-Thread and FreeRTOS firmware debugging: each RTOS’s own command tree (e.g., viewing threads, timers, heaps), kernel object pretty-printers and convenience functions (accessing object fields via native GDB expressions). The new version adds an rtt objects object summary command for the RT-Thread side, unifies heap and object output to a neutral renderer; upgrades the help system to a git-style structured command tree, documenting fields, usage, configuration dependencies, and implementation limitations item by item; and fixes an issue where initialization policy validation failure would directly terminate the GDB session. The framework currently supports RT-Thread 3.1.x / 4.0.x / 4.1.x, with both Cortex-A9 and RV64 targets having passed closed-loop verification, making it an active project in the RT-Thread third-party debugging toolchain.

3.3 GD32 Downstream Repository Driver Update Branch Advances: PR #71 Refreshed and Enters Review Interaction (09-22)

Date: 2026-09-22 13:37 (Beijing Time, push time) Source: PR #71

The update_driver branch of GigaDevice’s downstream repository gd32_rt-thread pushed a driver update commit within the window, refreshing PR #71 under review, with review comment interaction appearing on the repository side. The proposal centers on GPIO initialization version updates for USART, SPI, and two-wire serial bus drivers, replacing and reorganizing legacy driver files. This is ongoing work on a vendor-maintained branch and has not yet been merged back to mainline. The same organization’s Zephyr-oriented repository also had pushes, not covered in this topic.

IV. Industry Applications

4.1 No New Deployment Cases Within the Window; CIIF Exhibits Constitute the Most Recent Industry-Side Activity (09-23)

No new mass-production or commercial deployment cases within the window. The most recent industry-side activity comes from the China International Industry Fair (CIIF): RT-Thread exhibited industrial control equipment, mobile robots, embodied intelligence, and flight control units as physical exhibits on-site, and organized a hands-on workshop for edge AI smart cars (see 2.1), covering the complete experience chain “from low-level system to AI application.” No new collaboration or deployment news in the robotics and embodied intelligence direction within the window, consistent with the previous week’s pace.

V. Summary and Trend Observations

  • Mainline silent, review side concentrated in a single night: The mainline has had no merges for two consecutive days since Monday (09-21) afternoon’s concentrated batch. The review queue added eight proposals in a single night, unusual in recent times, seven of which constitute systematic boundary hardening for historical legacy issues (all with verification notes and references to existing defect reports), and one adds WCH CH32V203 (RISC-V) board-level support.
  • Vendor board-level work enters performance consolidation phase: The Titan Mini OpenMV project quickly entered the optimization phase after completing its release pipeline, with hardware clock and memory pool adjustments bringing multiplicative reductions in inference time, and receiving industry media follow-up. The engineering maturity of the edge vision line is steadily improving.
  • Third-party debugging ecosystem has version output: GDR 2026.03 refines RT-Thread object commands and help system; community-driven debugging toolchains remain continuously active.
  • Official channels silent for the thirty-fourth day: Product and event information continues to be first released via the store, forum, and industry media; the official website news list page remains unverifiable.
  • Community content dominated by maintenance updates: Tutorial series, competition, and application-related old posts all had editorial refreshes within the window, with no new topics; the pace of in-depth content output remains steady.

5.2 Limitations and Deduplication Notes

  • Deduplication notes: CIIF Workshop (recruitment already covered on 09-20; this period adds session and content details), RA8P1 OpenMV project (already covered on 09-18; this period is a performance optimization increment), GD32 PR #71 (already covered on 09-21; this period is a branch advancement increment) are all incremental reports; tutorial series Chapter 2, RK3576 long post, and electronics competition project (already covered on 09-18, 09-21) are old post editorial updates, not re-covered.
  • The EE Times China original site is not directly accessible; Titan Mini report key points are based on aggregated headlines and publication times; CIIF exhibition dates are per official public reports, Workshop session details per the 09-22 article, subject to the organizer’s announcements.
  • Official news API and website news list page status same as previous period (thirty-fourth day of no updates, page not directly verifiable).

Appendix: Source Verification Table

Source Verification Result
RT-Thread official news API Latest entry 2026-06-17; no new items within the window; stalled for the thirty-fourth consecutive day
Official website news list page Still returns a loading failure prompt; cannot be directly verified
Community forum article API No newly published articles within the window; several old posts edited and updated (tutorial series chapter 2, RK3576 long post, electronics competition project), not re-included
GitHub org: RT-Thread (main repo commits) No merges within the window; latest remains the two commits on the afternoon of 09-21
GitHub org: RT-Thread (PR / Issue) 8 new proposals opened overnight (#11820 ~ #11827); no closures or merges within the window
GitHub RT-Thread/rt-thread (releases) No new releases within the window; latest is v5.3.0 on 09-10
GitHub RT-Thread/env (toolchain) No new commits within the window; latest is 09-16
GitHub RT-Thread/packages (package index) No new commits within the window; latest is 09-14
GitHub RT-Thread-Packages (device support package org) No new pushes within the window; latest is the STM32H7 dual packages on 09-18
GitHub RT-Thread-Studio (BSP SDK org) RA8P1 Titan Mini pushed two OpenMV performance optimization commits; no new activity in other repos within the window
GitHub GD32-MCU-IOT (vendor downstream org) gd32_rt-thread’s update_driver branch pushed driver updates and refreshed PR #71; the same org’s Zephyr-oriented repo also had pushes, off-topic
GitHub topic:rt-thread (pushes in the past week) New GDR debugging framework 2026.03 release; another reverse-engineering repo’s README was rewritten into download-traffic-bait content (account suspected anomalous), excluded from the report; the rest are existing repos
Google News aggregation (Chinese and English, via proxy) 2 valid items (Industry Expo Workshop details, Titan Mini OpenMV coverage); the rest are headline word-splitting noise, removed

Complete Source List