Rt thread
Author: t | 2025-04-24
RT-Thread is an open source IoT Real-Time Operating System (RTOS). - rt-thread/README_zh.md at master RT-Thread/rt-thread
GitHub - RT-Thread/rt-thread: RT-Thread is an open
Last Updated on: February 18th, 2023 This article is a continuation of the Series on RT-Thread STM32 Tutorials and carries the discussion on RT-Thread RTOS and implementation with STM32. The aim of this series is to provide easy and practical examples that anyone can understand. In this Getting Started STM32 with RT-Thread RTOS post, we will see how to install the IDE and create the first program.You can find a video explanation of this tutorial here.Table of ContentsGetting Started STM32 with RT-Thread RTOSTools and Components RequiredRT-Thread StudioRT-Thread Studio FeaturesRT-Thread Studio InstallationProject CreationBuild ErrorSource CodeConnectionsFlashing and DemoVideo ExplanationWhat’s NextIn our last post, we have seen RT-Thread RTOS Introduction. In this post, we will start coding directly. Tools and Components RequiredSTM32F411 Dev Board (You can use any STM32F4 controller)RT-Thread StudioRT-Thread StudioWe need to use the IDE to write code. RT-Thread supports many IDEs including IAR, Keil, etc. But they have launched its Innovative and Powerful Embedded Integrated Development Environment called RT-Thread Studio. RT-Thread Studio is built on Eclipse but has innovative interface interaction designs and it is deep customization of Eclipse, easy and simple to use, even new developers can easily get started.RT-Thread Studio has the features of project creation and management, code editing, SDK management, RT-Thread configuration, build configuration, debugging configuration, program download, and debugging. Also, it combined the graphical configuration system with packages and component resources, reducing the duplication of work and improving development efficiency.RT-Thread Studio FeaturesRT-Thread studio is a one-stop development tool, it has an easy-to-use graphical configuration system and a wealth of software packages and components resources, which makes IoT development simple and efficient.The community version is free forever. Supports mainstream C/C++ language development. Powerful code editing and refactoring functionality. SDK Manager supports online downloads and updates the latest source package of RT-Thread. Easy-to-use project creation wizard can quickly validate prototypes. Brand new graphical configuration system, which supports both schema diagram and tree diagram configuration. The software package market offers a variety of package resources. Rich debugging facilities to quickly view and track code issues.Okay, Let’s stop the theory here. We will start creating the project.RT-Thread Studio InstallationPlease download the RT-Thread Studio from their official website.Install the RT-Thread Studio. Click Next.Accept the Agreement and click Next.Install the RT-Thread Studio in the proper location.Click Next and Install.Wait until it installs the RT-Thread Studio. Then launch RT-Thread Studio.That’s it. It will open the RT-Thread Studio.Project CreationFollow the below video to create a project.Build ErrorIf you use the latest RT-Thread Studio version 4.0.3 and the latest CSL (Chip Support Library) version 0.2.3, then you will get the below build error.../drivers/drv_usart.c:338:16: error: ‘struct serial_configure’ has no member named ‘flowcontrol’../drivers/drv_usart.c:340:10: error: ‘RT_SERIAL_FLOWCONTROL_NONE’ undeclared../drivers/drv_usart.c:343:10: error: ‘RT_SERIAL_FLOWCONTROL_CTSRTS’ undeclaredWe can solve this error by three methods.Downgrade The RT-Thread OS version to 4.0.2, and use the latest CSL (0.2.3)Downgrade the CSL version to 0.0.2, and use the latest RT-Thread OS version (4.0.3)Use the RT-Thread OS version over 4.1.0, then you won’t see the error.We have explained the second method in the video. Please check that, if you don’t know how to do that. But we suggest you to use the third method. You can install that through the SDK manager.You can also change the Chip Support Library by below easy method.Right-click the Project name in the Project ExplorerClick Modify ProjectClick Chip support package versionThen select your desired CSL version.By this method, you can change the OS version also.Source CodeWe are not going to modify the source code. We will just use the default program now. The application main.c will be present under the HelloWorld/applications/main.c directory. You can also get the complete source code from GitHub./* * Copyright (c) 2006-2023, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2023-02-10 RT-Thread first version */#include #define DBG_TAG "main"#define DBG_LVL DBG_LOG#include int main(void){ int count = 1; while (count++) { LOG_D("Hello RT-Thread!"); rt_thread_mdelay(1000); } return RT_EOK;}Build the source code. It should build without any errors.ConnectionsIn this project, we are using the STM32F411 and its UART1 (PA9 and PA10) for Debug prints.Connection diagramFlashing and DemoFlash the Code using RT-Thread Studio. Please refer to the below image.FlashingOnce you flash the code, then open any serial terminal application. Here, I am going to use the RT-Thread Studio’s inbuilt terminal. Set the baud rate (115200). You should see the print “Hello RT-Thread!“. Refer to the below images.Open TerminalConfigureOutputVideo ExplanationWhat’s NextIn our next post, we will discuss about the RT-Thread RTOS thread management and STM32 GPIOs.You can also read the below tutorials.Linux Device Driver TutorialsC Programming TutorialsFreeRTOS TutorialsNuttX RTOS TutorialsRTX RTOS TutorialsInterrupts BasicsI2C Protocol – Part 1 (Basics)I2C Protocol – Part 2 (Advanced Topics)STM32 TutorialsLPC2148 (ARM7) TutorialsPIC16F877A Tutorials8051 TutorialsUnit Testing in C TutorialsESP32-IDF TutorialsRaspberry Pi TutorialsEmbedded Interview TopicsReset Sequence in ARM Cortex-M4BLE BasicsVIC and NVIC in ARMSPI – Serial Peripheral Interface ProtocolSTM32F7 Bootloader TutorialsRaspberry PI Pico TutorialsSTM32F103 Bootloader TutorialsRT-Thread RTOS TutorialsZephyr RTOS Tutorials – STM32Zephyr RTOS Tutorials – ESP32AUTOSAR TutorialsUDS Protocol TutorialsProduct ReviewsSTM32 MikroC Bootloader TutorialVHDL TutorialsEmbedded Software | Firmware | Linux Devic Driver | RTOSHi, I am a tech blogger and an Embedded Engineer. I am always eager to learn and explore tech-related concepts. And also, I wanted to share my knowledge with everyone in a more straightforward way with easy practical examples. I strongly believe that learning by doing is more powerful than just learning by reading. I love to do experiments. If you want to help or support me on my journey, consider sharing myGitHub - RT-Thread/rt-thread: RT-Thread is an open source IoT
Riscv-rtthread Release VersionEnglish | 中文OverviewThis release version is based on the RISC-V architecture, integrating the RT-Thread kernel while retaining the RT-Thread build system. We have also restructured the RT-Thread repository to make the structure clearer and focus developers on their own product development. The components and device drivers integrated in this release version have been tested on actual hardware and projects, and bugs are fixed regularly. Out-of-the-box usage is supported.WhyWhy create such a release version?The official RT-Thread repository supports multiple RISC-V architecture chips, but the official repository focuses on the kernel and lacks targeted upper-layer applications.HowCancel online package management and adopt an integrated components and device_driver approach. The components and device drivers integrated in this release version have been tested and will be regularly fixed.If the required components or device drivers are not integrated, they can still be integrated using the package approach. You can add source "$PKGS_DIR/Kconfig" to the Kconfig file of the required project to integrate it, and use the default RT-Thread package download method.Optimize the RT-Thread build system to allow developers to focus more on application development. The application (examples/applications) is the entry point, and the BSP is canceled, replaced by boards. Developers can select the target board and components to compile in the application, completing the application configuration.Reduce the barrier to entry for users, allowing first-time users to quickly get started.Simplifying the environment setup is the first step in hand. We have optimized the process of setting up the development environment, minimizing the number of software packages installed.Optimized the RT-Thread toolchain configuration method, automatically downloading the toolchain, eliminating the need for manual download and configuration.Optimized the chip packaging script, allowing this project to be cross-platform compiled, currently supporting Windows x86_64, Linux x86_64/arm64/riscv64, macOS x86_64/riscv64 series operating systems.Directory.├── applications # Applications├── examples # Examples│ └── get-started #. RT-Thread is an open source IoT Real-Time Operating System (RTOS). - rt-thread/README_zh.md at master RT-Thread/rt-threadReleases RT-Thread/rt-thread - GitHub
Normally.macOSPlease install the following software packages using the brew tool:$ brew install scons u-boot-tools dtcConfiguration and CompilationApplications in this release version are located in the examples and applications directories. Using the examples/get-started/blink directory as an example:$ cd examples/get-started/blinkProject ConfigurationYou can select the default configuration based on the current running target development board. The config file is located in the boards/configs directory.$ scons --defconfig=milkv_duo256m_sd_c906_configMenu-based configurationSelect the current target board to compile, then configure the RT-Thread kernel and software. Save the configuration after completion.Compilation$ cd examples/get-started/blink$ scons -j8After compilation, firmware for the corresponding development board will be generated in the output directory of examples/get-started/blink.How to UseThe method of burning/run for each different development board may vary slightly. Please refer to the documentation for the corresponding development board (e.g., board/sopogo) for details.Burn the firmware to the development board, and refer to the documentation for the corresponding development board for the burning method.After burning, reset the development board, and you will see the RT-Thread startup information.FAQLinux/macOS prompt "u-boot-tools not installed"$ mkimage not found, please check ...Solution: Install u-boot-tools$ sudo apt-get install -y u-boot-tools device-tree-compileror$ brew install u-boot-tools dtcOtherWe still follow the code style and License of the official RT-Thread repository. Please refer to RT-Thread Coding Style for code style.More information can be found in the RT-Thread Official Documentation Center.Welcome to join us and help improve this release version. Welcome to submit issues or PRs.Welcome to contact me: flyingcys@163.com SNBForums Code of ConductSNBForums is a community for everyone, no matter what their level of experience.Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!The rules are simple: Be patient, be nice, be helpful or be gone! G Traffic monitor log incomplete Hello everyone,I know RT-AC3100 is no longer supported, but I have an issue and was wondering if there could be an easy fix. I have an issue with my traffic analyser statistic. It has no memory. I only see the last 1-2 hours of activity of my clients, before that : just a flat line/no... GCourtoy Thread Jan 13, 2025 rt-ac3100 traffic analyzer Replies: 3 Forum: ASUS AC Routers & Adapters (Wi-Fi 5) Traffic Analyzer Stats Issue on ASUS RT-AX82U AiMesh System Hi. I recently started using the ASUS RT-AX82U router with Firmware Version: 3.0.0.4.388_24963. I've set it up in an AiMesh system configuration with the following devices:ASUS RT-AX82U (AiMesh Router)ASUS RT-AX82U (AiMesh Node)DSL-AC68U (AiMesh Node)The issue I'm encountering is with the... Rana Imran Thread Aug 1, 2024 asus rt-ax82u firmware version: 3.0.0.4.388_24963 traffic analyzer Replies: 2 Forum: ASUS AX Routers & Adapters (Wi-Fi 6/6e) J Enhanced tools to capture per device Asus traffic analyzer statistics longer term Looking to capture data like the default Asus Traffic Analyze-> statistics page. Ideally I'd like to be able to capture the per device data and have it stored longer term so I can reference it later on. It seems like the default Asus page only holds the data for a short time. Are there any... jc259 Thread Jul 15, 2024 asus merlin traffic analyzer traffic monitor Replies: 9 Forum: Asuswrt-Merlin AddOns T Traffic statistics not working on Asus RT-AX3000 I enabled the traffic analyzer but its not recording any traffic. Is their any way i can fix this? Tailsrules723 Thread Jun 26, 2024 not working traffic analyzer Replies: 6 Forum: Asuswrt-Merlin T Customization for Traffic Analyzer - Statistic data? I've been playing with the "Traffic Analyzer - Statistic" function on my Asuswrt-Merlin install (388.2 beta1 on a GT-AXE11000), and have a couple questionsRT-Thread/RT-AK: RT-Thread AI Kit - GitHub
Windows RT 8.0 Recovery Image download Thread starter Thread starter Dos101 Start date Start date Oct 21, 2013 Home Forums Windows Central Archives Windows Central Archive You are using an out of date browser. It may not display this or other websites correctly.You should upgrade or use an alternative browser. Oct 21, 2013 #1 Oct 21, 2013 #2 Nov 2, 2013 #3 Yeah, this looks like my only option to do a reset now so I can sell mine. Nov 3, 2013 #4 Took SEVERAL attempts, but it finally worked (I think...it's still resetting after about an hour of waiting...49%). Nov 13, 2013 #5 someone know where Can i download European version with Spanish? or is the same for all ? Nov 25, 2013 #7 is this working for the Asus Vivotab RT, too? No, this is specifically for the Surface RT. Jan 18, 2014 #9 Do you still have the Surface RT Recovery Image (Windows RT 8.0) laying around? I'm looking for it since Microsoft has pulled this image from its downloads and I need it to unbrick my Surface RT (won't upgrade to 8.1 and won't downgrade from the Preview). Thanks in advance! Jan 29, 2014 #11 Feb 1, 2014 #12 Thanks I am storing a copy on two separate HDD's now............calfee Apr 24, 2014 #13 Apr 24, 2014 #14 The links in my previous post easily downgraded my Microsoft Surface RT from Windows RT 8.1 to Windows RT 8.0 Jan 17, 2015 #15 Oct 1, 2015 #17 Did you only copy the .iso in the usb ?I need help please ... Mar 16, 2018 #19 Hey! Does anyone on this thread still have an old copy of windows 8.0 image for RT? Link is dead. I'm trying to get 8.0. Apr 19, 2018 #20 Similar threads Forum statistics Threads 334,067 Messages 2,257,036 Members 428,720 Latest member pooja s Share this pageRT-Thread RTOS: RT-Thread User Guide - rt-thread.github.io
Username or EmailUsername or Email Password Password Quotes by TradingView --> > Platforms and Indicators > Webinar: LinnSoft Investor/RT Overview Discussion in Platforms and Indicators Updated October 16, 2017 Top Posters looks_one sysot1t with 12 posts (7 thanks) looks_two Big Mike with 11 posts (1 thanks) looks_3 LS Chad with 8 posts (19 thanks) looks_4 monpere with 5 posts (0 thanks) Best Posters looks_one LS Chad with 2.4 thanks per post looks_two sysot1t with 0.6 thanks per post looks_3 Lornz with 0.3 thanks per post looks_4 Big Mike with 0.1 thanks per post trending_up 60,349 views thumb_up 29 thanks given group 14 followers forum 59 posts attach_file 3 attachments Page 1 of 6 123 > Last » --> Search this Thread Webinar: LinnSoft Investor/RT Overview (login for full post details) --> February 18th, 2011, 07:56 AM #1 (permalink) LS Chad Milton, GA Vendor: www.linnsoft.com Experience: IntermediatePlatform: Investor/RT, MarketDeltaBroker: DTN IQFeedTrading: ES Posts: 165 since Apr 2010 Thanks Given: 2 Thanks Received: 144 Investor/RT Overview Webinarwith focus on features and indicators attracting the most recent attention(suggestions or questions welcomed below)April 27th @ 4:00pm Eastern TimeBig Mike has been kind enough to invite me to do a webinar for the NexusFi (formerly BMT) community. The webinar will be held on April 27th @ 4:00pm ET. As for the content of the presentation, I am open to suggestions on anything related to Investor/RT. Right now, I intend to present a general overview of Investor/RT focusing on some of the features and indicators that are attracting the most attention recently. If there is any specific aspect of the software you would like to see covered, or if there are any questions about the software you would like answered, please post as a response to this thread. I want to make this presentation as relevant. RT-Thread is an open source IoT Real-Time Operating System (RTOS). - rt-thread/README_zh.md at master RT-Thread/rt-threadPull requests RT-Thread/rt-thread - GitHub
SNBForums Code of ConductSNBForums is a community for everyone, no matter what their level of experience.Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!The rules are simple: Be patient, be nice, be helpful or be gone! Thread starter Thread starter Johan1974NL Start date Start date Dec 6, 2021 #21 L2TP by itself doesn't have any encryption. You basically only change your external IP to the one of the exit server. Your in/out data is visible and you can be blocked at any time on a simple firewall. My suggestion is to switch to encrypted OpenVPN. You'll have significant speed drop though, perhaps down to 70Mbps. This is what AC5300 can do. For more you need a newer ARMv8 CPU router with AES support. You may get to 200Mbps speeds. For even more - x86 hardware firewall or change of protocol to Wireguard. Last edited: Dec 13, 2021 Tech9 Part of the Furniture #22 Here, ExpressVPN example for L2TP on a router:"Important: L2TP does not offer any encryption and should only be used for anonymization or for changing locations. If you are located in a country with a high level of internet censorship, you are recommended to use the ExpressVPN app for a more stable VPN connection."What you can try is OpenVPN TCP on port 443. It's harder to block and may go through. Similar threads Thread starterTitleForumRepliesDate A Slow wifi speeds on BE86u., What settings should I changeAsuswrt-Merlin13Jan 22, 2025 J QoS Bandwidth Limit SettingsAsuswrt-Merlin2Jan 7, 2025 A VPN settings missing in newer Merlin firmwares on my routerAsuswrt-Merlin13Dec 31, 2024 E PSA: Check your local DST settings for accuracyAsuswrt-Merlin0Oct 13, 2024 D RT-AC88U with firmware Merlin 386.12 reboots with most settings wipedAsuswrt-Merlin13Aug 25, 2024 Asus RT-AC66U Merlin Stuck applying settings when manually assigning IPAsuswrt-Merlin19Jul 28, 2024 F Family Settings - Question -Asus AppAsuswrt-Merlin1Jul 10, 2024 Asus RT-AC5300 best Wireless SettingsAsuswrt-Merlin6Jul 1, 2024 G Quad 9 WAN DNS SettingsAsuswrt-Merlin10Jun 16, 2024 How to port Merlin settings to a new routerAsuswrt-Merlin23May 24, 2024 QoS Bandwidth Limit Settings Started by jasonchewy Jan 7, 2025 Replies:Comments
Last Updated on: February 18th, 2023 This article is a continuation of the Series on RT-Thread STM32 Tutorials and carries the discussion on RT-Thread RTOS and implementation with STM32. The aim of this series is to provide easy and practical examples that anyone can understand. In this Getting Started STM32 with RT-Thread RTOS post, we will see how to install the IDE and create the first program.You can find a video explanation of this tutorial here.Table of ContentsGetting Started STM32 with RT-Thread RTOSTools and Components RequiredRT-Thread StudioRT-Thread Studio FeaturesRT-Thread Studio InstallationProject CreationBuild ErrorSource CodeConnectionsFlashing and DemoVideo ExplanationWhat’s NextIn our last post, we have seen RT-Thread RTOS Introduction. In this post, we will start coding directly. Tools and Components RequiredSTM32F411 Dev Board (You can use any STM32F4 controller)RT-Thread StudioRT-Thread StudioWe need to use the IDE to write code. RT-Thread supports many IDEs including IAR, Keil, etc. But they have launched its Innovative and Powerful Embedded Integrated Development Environment called RT-Thread Studio. RT-Thread Studio is built on Eclipse but has innovative interface interaction designs and it is deep customization of Eclipse, easy and simple to use, even new developers can easily get started.RT-Thread Studio has the features of project creation and management, code editing, SDK management, RT-Thread configuration, build configuration, debugging configuration, program download, and debugging. Also, it combined the graphical configuration system with packages and component resources, reducing the duplication of work and improving development efficiency.RT-Thread Studio FeaturesRT-Thread studio is a one-stop development tool, it has an easy-to-use graphical configuration system and a wealth of software packages and components resources, which makes IoT development simple and efficient.The community version is free forever. Supports mainstream C/C++ language development. Powerful code editing and refactoring functionality. SDK Manager supports online downloads and updates the latest source package of RT-Thread. Easy-to-use project creation wizard can quickly validate prototypes. Brand new graphical configuration system, which supports both schema diagram and tree diagram configuration. The software package market offers a variety of package resources. Rich debugging facilities to quickly view and track code issues.Okay, Let’s stop the theory here. We will start creating the project.RT-Thread Studio InstallationPlease download the RT-Thread Studio from their official website.Install the RT-Thread Studio. Click Next.Accept the Agreement and click Next.Install the RT-Thread Studio in the proper location.Click Next and Install.Wait until it installs the RT-Thread Studio. Then launch RT-Thread Studio.That’s it. It will open the RT-Thread Studio.Project CreationFollow the below video to create a project.Build ErrorIf you use the latest RT-Thread Studio version 4.0.3 and the latest CSL (Chip Support Library) version 0.2.3, then you will get the below build error.../drivers/drv_usart.c:338:16: error: ‘struct serial_configure’ has no member named ‘flowcontrol’../drivers/drv_usart.c:340:10: error: ‘RT_SERIAL_FLOWCONTROL_NONE’ undeclared../drivers/drv_usart.c:343:10: error: ‘RT_SERIAL_FLOWCONTROL_CTSRTS’ undeclaredWe can solve this error by three methods.Downgrade
2025-04-11The RT-Thread OS version to 4.0.2, and use the latest CSL (0.2.3)Downgrade the CSL version to 0.0.2, and use the latest RT-Thread OS version (4.0.3)Use the RT-Thread OS version over 4.1.0, then you won’t see the error.We have explained the second method in the video. Please check that, if you don’t know how to do that. But we suggest you to use the third method. You can install that through the SDK manager.You can also change the Chip Support Library by below easy method.Right-click the Project name in the Project ExplorerClick Modify ProjectClick Chip support package versionThen select your desired CSL version.By this method, you can change the OS version also.Source CodeWe are not going to modify the source code. We will just use the default program now. The application main.c will be present under the HelloWorld/applications/main.c directory. You can also get the complete source code from GitHub./* * Copyright (c) 2006-2023, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2023-02-10 RT-Thread first version */#include #define DBG_TAG "main"#define DBG_LVL DBG_LOG#include int main(void){ int count = 1; while (count++) { LOG_D("Hello RT-Thread!"); rt_thread_mdelay(1000); } return RT_EOK;}Build the source code. It should build without any errors.ConnectionsIn this project, we are using the STM32F411 and its UART1 (PA9 and PA10) for Debug prints.Connection diagramFlashing and DemoFlash the Code using RT-Thread Studio. Please refer to the below image.FlashingOnce you flash the code, then open any serial terminal application. Here, I am going to use the RT-Thread Studio’s inbuilt terminal. Set the baud rate (115200). You should see the print “Hello RT-Thread!“. Refer to the below images.Open TerminalConfigureOutputVideo ExplanationWhat’s NextIn our next post, we will discuss about the RT-Thread RTOS thread management and STM32 GPIOs.You can also read the below tutorials.Linux Device Driver TutorialsC Programming TutorialsFreeRTOS TutorialsNuttX RTOS TutorialsRTX RTOS TutorialsInterrupts BasicsI2C Protocol – Part 1 (Basics)I2C Protocol – Part 2 (Advanced Topics)STM32 TutorialsLPC2148 (ARM7) TutorialsPIC16F877A Tutorials8051 TutorialsUnit Testing in C TutorialsESP32-IDF TutorialsRaspberry Pi TutorialsEmbedded Interview TopicsReset Sequence in ARM Cortex-M4BLE BasicsVIC and NVIC in ARMSPI – Serial Peripheral Interface ProtocolSTM32F7 Bootloader TutorialsRaspberry PI Pico TutorialsSTM32F103 Bootloader TutorialsRT-Thread RTOS TutorialsZephyr RTOS Tutorials – STM32Zephyr RTOS Tutorials – ESP32AUTOSAR TutorialsUDS Protocol TutorialsProduct ReviewsSTM32 MikroC Bootloader TutorialVHDL TutorialsEmbedded Software | Firmware | Linux Devic Driver | RTOSHi, I am a tech blogger and an Embedded Engineer. I am always eager to learn and explore tech-related concepts. And also, I wanted to share my knowledge with everyone in a more straightforward way with easy practical examples. I strongly believe that learning by doing is more powerful than just learning by reading. I love to do experiments. If you want to help or support me on my journey, consider sharing my
2025-04-09Riscv-rtthread Release VersionEnglish | 中文OverviewThis release version is based on the RISC-V architecture, integrating the RT-Thread kernel while retaining the RT-Thread build system. We have also restructured the RT-Thread repository to make the structure clearer and focus developers on their own product development. The components and device drivers integrated in this release version have been tested on actual hardware and projects, and bugs are fixed regularly. Out-of-the-box usage is supported.WhyWhy create such a release version?The official RT-Thread repository supports multiple RISC-V architecture chips, but the official repository focuses on the kernel and lacks targeted upper-layer applications.HowCancel online package management and adopt an integrated components and device_driver approach. The components and device drivers integrated in this release version have been tested and will be regularly fixed.If the required components or device drivers are not integrated, they can still be integrated using the package approach. You can add source "$PKGS_DIR/Kconfig" to the Kconfig file of the required project to integrate it, and use the default RT-Thread package download method.Optimize the RT-Thread build system to allow developers to focus more on application development. The application (examples/applications) is the entry point, and the BSP is canceled, replaced by boards. Developers can select the target board and components to compile in the application, completing the application configuration.Reduce the barrier to entry for users, allowing first-time users to quickly get started.Simplifying the environment setup is the first step in hand. We have optimized the process of setting up the development environment, minimizing the number of software packages installed.Optimized the RT-Thread toolchain configuration method, automatically downloading the toolchain, eliminating the need for manual download and configuration.Optimized the chip packaging script, allowing this project to be cross-platform compiled, currently supporting Windows x86_64, Linux x86_64/arm64/riscv64, macOS x86_64/riscv64 series operating systems.Directory.├── applications # Applications├── examples # Examples│ └── get-started #
2025-04-21Normally.macOSPlease install the following software packages using the brew tool:$ brew install scons u-boot-tools dtcConfiguration and CompilationApplications in this release version are located in the examples and applications directories. Using the examples/get-started/blink directory as an example:$ cd examples/get-started/blinkProject ConfigurationYou can select the default configuration based on the current running target development board. The config file is located in the boards/configs directory.$ scons --defconfig=milkv_duo256m_sd_c906_configMenu-based configurationSelect the current target board to compile, then configure the RT-Thread kernel and software. Save the configuration after completion.Compilation$ cd examples/get-started/blink$ scons -j8After compilation, firmware for the corresponding development board will be generated in the output directory of examples/get-started/blink.How to UseThe method of burning/run for each different development board may vary slightly. Please refer to the documentation for the corresponding development board (e.g., board/sopogo) for details.Burn the firmware to the development board, and refer to the documentation for the corresponding development board for the burning method.After burning, reset the development board, and you will see the RT-Thread startup information.FAQLinux/macOS prompt "u-boot-tools not installed"$ mkimage not found, please check ...Solution: Install u-boot-tools$ sudo apt-get install -y u-boot-tools device-tree-compileror$ brew install u-boot-tools dtcOtherWe still follow the code style and License of the official RT-Thread repository. Please refer to RT-Thread Coding Style for code style.More information can be found in the RT-Thread Official Documentation Center.Welcome to join us and help improve this release version. Welcome to submit issues or PRs.Welcome to contact me: flyingcys@163.com
2025-04-22SNBForums Code of ConductSNBForums is a community for everyone, no matter what their level of experience.Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!The rules are simple: Be patient, be nice, be helpful or be gone! G Traffic monitor log incomplete Hello everyone,I know RT-AC3100 is no longer supported, but I have an issue and was wondering if there could be an easy fix. I have an issue with my traffic analyser statistic. It has no memory. I only see the last 1-2 hours of activity of my clients, before that : just a flat line/no... GCourtoy Thread Jan 13, 2025 rt-ac3100 traffic analyzer Replies: 3 Forum: ASUS AC Routers & Adapters (Wi-Fi 5) Traffic Analyzer Stats Issue on ASUS RT-AX82U AiMesh System Hi. I recently started using the ASUS RT-AX82U router with Firmware Version: 3.0.0.4.388_24963. I've set it up in an AiMesh system configuration with the following devices:ASUS RT-AX82U (AiMesh Router)ASUS RT-AX82U (AiMesh Node)DSL-AC68U (AiMesh Node)The issue I'm encountering is with the... Rana Imran Thread Aug 1, 2024 asus rt-ax82u firmware version: 3.0.0.4.388_24963 traffic analyzer Replies: 2 Forum: ASUS AX Routers & Adapters (Wi-Fi 6/6e) J Enhanced tools to capture per device Asus traffic analyzer statistics longer term Looking to capture data like the default Asus Traffic Analyze-> statistics page. Ideally I'd like to be able to capture the per device data and have it stored longer term so I can reference it later on. It seems like the default Asus page only holds the data for a short time. Are there any... jc259 Thread Jul 15, 2024 asus merlin traffic analyzer traffic monitor Replies: 9 Forum: Asuswrt-Merlin AddOns T Traffic statistics not working on Asus RT-AX3000 I enabled the traffic analyzer but its not recording any traffic. Is their any way i can fix this? Tailsrules723 Thread Jun 26, 2024 not working traffic analyzer Replies: 6 Forum: Asuswrt-Merlin T Customization for Traffic Analyzer - Statistic data? I've been playing with the "Traffic Analyzer - Statistic" function on my Asuswrt-Merlin install (388.2 beta1 on a GT-AXE11000), and have a couple questions
2025-04-22Windows RT 8.0 Recovery Image download Thread starter Thread starter Dos101 Start date Start date Oct 21, 2013 Home Forums Windows Central Archives Windows Central Archive You are using an out of date browser. It may not display this or other websites correctly.You should upgrade or use an alternative browser. Oct 21, 2013 #1 Oct 21, 2013 #2 Nov 2, 2013 #3 Yeah, this looks like my only option to do a reset now so I can sell mine. Nov 3, 2013 #4 Took SEVERAL attempts, but it finally worked (I think...it's still resetting after about an hour of waiting...49%). Nov 13, 2013 #5 someone know where Can i download European version with Spanish? or is the same for all ? Nov 25, 2013 #7 is this working for the Asus Vivotab RT, too? No, this is specifically for the Surface RT. Jan 18, 2014 #9 Do you still have the Surface RT Recovery Image (Windows RT 8.0) laying around? I'm looking for it since Microsoft has pulled this image from its downloads and I need it to unbrick my Surface RT (won't upgrade to 8.1 and won't downgrade from the Preview). Thanks in advance! Jan 29, 2014 #11 Feb 1, 2014 #12 Thanks I am storing a copy on two separate HDD's now............calfee Apr 24, 2014 #13 Apr 24, 2014 #14 The links in my previous post easily downgraded my Microsoft Surface RT from Windows RT 8.1 to Windows RT 8.0 Jan 17, 2015 #15 Oct 1, 2015 #17 Did you only copy the .iso in the usb ?I need help please ... Mar 16, 2018 #19 Hey! Does anyone on this thread still have an old copy of windows 8.0 image for RT? Link is dead. I'm trying to get 8.0. Apr 19, 2018 #20 Similar threads Forum statistics Threads 334,067 Messages 2,257,036 Members 428,720 Latest member pooja s Share this page
2025-03-27