{"id":40661,"date":"2021-02-05T16:27:04","date_gmt":"2021-02-05T08:27:04","guid":{"rendered":"\/blog\/?p=40661"},"modified":"2021-02-07T09:30:04","modified_gmt":"2021-02-07T01:30:04","slug":"rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico","status":"publish","type":"post","link":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/","title":{"rendered":"Rust, RT-Thread OS &amp; FreeRTOS come to the Raspberry Pi Pico"},"content":{"rendered":"\n<p>Another week brings another piece of exciting news for Raspberry Pi\u2019s brand new Raspberry Pi Pico microcontroller unit (MCU)! Following its release in January 2021, the community has been abuzz with trying different programs, tools and platforms with the Pico. Today, we bring you news about support for Rust, RT-Thread OS, and FreeRTOS on the Raspberry Pi!<\/p>\n\n\n\n<div style=\"height:15px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/48JK9TtuwSDdWSpaCfw3f7CDBUg_pNTDYsqcE-WNwn4GTj-505stKEKlY2DNc36pM5J0NoA1WccdvR2SagVVTHoUxTpcSQgJ-hEH20c1jU6RZbFk0f2E61P35LDUt267ZOplY24t\" alt=\"\" \/><\/figure><\/div>\n\n\n\n<div style=\"height:15px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>In case you missed it&#8230;<\/strong><\/h2>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The Raspberry Pi Pico features the RP2040 dual-core Cortex-M0+, Raspberry Pi Foundation\u2019s very own silicon, and was announced to support MicroPython and C at launch. Shortly after, Arduino announced their plans to port the Arduino core to the Raspberry Pi Pico and other RP2040 boards. Read more about Arduino support for the Raspberry Pi Pico and the RP2040 in our <a href=\"https:\/\/blog.seeedstudio.com\/blog\/2021\/01\/29\/arduino-ide-support-announced-for-the-raspberry-pi-pico\/\">previous article here<\/a>.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Rust on Raspberry Pi Pico<\/strong><\/h2>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The Rust Programming Language is big in the embedded world. It\u2019s known to be fast and incredibly memory-efficient, which makes it great for microcontrollers where the optimisation of processing capabilities and power consumption are critical.<\/p>\n\n\n\n<div style=\"height:15px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/mg0GedMC_0Qae6iQ3QCHm3ob24bEJf2ULjxHk8cGn4FGNkbw9o1zjvy1saLFl6x75cYy1QwWpxE5bQP5cg_o1yh9Sjfc0bitqoIML0JVlPyWaGmAw_txzwsucaCGMMH7oK0RBtT8\" alt=\"\" width=\"965\" height=\"492\" \/><figcaption>Source: Rust-Lang.org<\/figcaption><\/figure><\/div>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>In particular, Rust is widely used for IoT applications and servers because of its tiny resource footprint and reliable performance. It also features a great collection of libraries that helps developers build their applications quickly and easily.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Read more about Rust on their <a href=\"https:\/\/www.rust-lang.org\/\">official website<\/a>.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Rust Code Running on Raspberry Pi Pico!<\/strong><\/h3>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Recently, Jonathan Pallant shared about his success to run some simple LED blinking code in Rust on the Raspberry Pi Pico!<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\nhttps:\/\/twitter.com\/therealjpster\/status\/1353026324198285312\n<\/div><\/figure>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The process is fairly complex and experimental at the moment, but I\u2019ll do my best to run it through in simple terms.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<ol class=\"wp-block-list\"><li>The RP2040 chip has external QSPI (Quad Serial Peripheral Interface) flash memory.<\/li><li>First, the manufacturer pre-programmed internal bootloader reads the first 256 bytes of this external flash and copies it to the top of the SRAM (static RAM).<\/li><li>Pallant has used this first 256 bytes as a \u2018second stage bootloader\u2019, which is used to reconfigure the XIP_SSI (Execute in Place Synchronous Serial Interface) to the right values for the external QSPI flash.<\/li><li>Finally, the user application is loaded by reading a vector table at the QSPI flash memory address, which points to the remaining contents of the QSPI flash (excluding the second stage bootloader).<\/li><\/ol>\n\n\n\n<div style=\"height:15px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>In a nutshell, Pallant\u2019s code has reconfigured the Raspberry Pi Pico to be able to read and execute the user application written in Rust!<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>To compile the code, he explains that he had to first build the Rust code with \u201ccargo build -release\u201d, then use the <a href=\"https:\/\/github.com\/raspberrypi\/pico-sdk\/tree\/master\/tools\/elf2uf2\">elf2uf2 tool from the pico-sdk<\/a> to create a UF2 file. This UF2 file can then be copied to the ROM bootloader, similar to how we <a href=\"https:\/\/magpi.raspberrypi.org\/articles\/programming-raspberry-pi-pico-with-python-and-micropython\">flash MicroPython code<\/a> to the Pico.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If you want to take a look at the specifics, he\u2019s also released his <a href=\"https:\/\/github.com\/rp-rs\/pico-blink-rs\">code and documentation<\/a> on GitHub.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Rust Development is Underway!<\/strong><\/h3>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Rust is being developed actively for use on the Raspberry Pi Pico! As of writing, the latest developments include a <a href=\"https:\/\/github.com\/rp-rs\/rp2040-pac\">Peripheral Access Crate (PAC) for the Raspberry Pi Pico<\/a>, which will allow Rust to be used for interfacing with the Pico\u2019s peripheral input output interfaces.<\/p>\n\n\n\n<p>If you want to follow the latest projects and progress, be sure to visit the <a href=\"https:\/\/github.com\/rp-rs\">rp-rs Github<\/a>.<\/p>\n\n\n\n<div style=\"height:15px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<hr class=\"wp-block-separator\" \/>\n\n\n\n<p>The exciting news doesn\u2019t stop there &#8211; RT-Thread OS has announced their official support for the Raspberry Pi Pico, now available in the RT-Thread Studio IDE!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>RT-Thread OS on the Raspberry Pi Pico<\/strong><\/h2>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><a href=\"https:\/\/www.rt-thread.io\/\">RT-Thread<\/a> is an open source embedded real-time operating system specialising in IoT purposes. For those unfamiliar, a real-time operating system (or RTOS) is an operating system that serves real-time applications in processing data as it comes in, without buffer delays.<\/p>\n\n\n\n<p>RT-Thread has been around since 2006, and has since been strongly supported with community development for more than a decade. The advantages of RT-Thread include:<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<ul class=\"wp-block-list\"><li>Extreme resource efficiency, with the minimum kernel only requiring 1.2KB RAM and 3KB Flash<\/li><li>Integrated power management components with low-power modes to minimise system power consumption<\/li><li>Complete yet still-growing package ecosystem includes middle-tier component supports such as file system, network protocols, GUI, audio frameworks etc.<\/li><li>Easy to use coding style with console shell debugging and other development tools<\/li><li>High scalability from minimal, tiny boards like the Raspberry Pi Pico up to feature-rich systems on Cortex-A7, A0, or even A55 dual cores<\/li><\/ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/928MsoLIUSlpH5qln5tytZDrF1cZlg0gjq2euE5bFxe7yY2-purWr4u9kc8Gn04R_mNhsb0Iv3qH7GdVvsDJ0wx7kkWcCm3C7qTEjEmtvgD8MZnuuKjL-Xzk5YQ7voj6ohs827C8\" alt=\"\" width=\"900\" height=\"430\" \/><figcaption>RT-Thread Studio Showcase, Source: RT-Thread.io<\/figcaption><\/figure><\/div>\n\n\n\n<p>You can begin developing with RT-Thread OS on the Raspberry Pi Pico right now.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Follow the official tutorial by RT-Thread for a<a href=\"https:\/\/rt-thread.medium.com\/getting-started-with-raspberry-pi-pico-in-rt-thread-studio-ide-5bb08c01363f\"> step-by-step guide on getting started<\/a>.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FreeRTOS on the Raspberry Pi Pico<\/strong><\/h2>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What is FreeRTOS?<\/strong><\/h3>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><a href=\"https:\/\/www.freertos.org\/index.html\">FreeRTOS<\/a> is another well known operating system in the IoT RTOS scene, similarly extensively developed for over a decade.<\/p>\n\n\n\n<p>FreeRTOS is offered as a kernel with modular IoT libraries, and is specially developed for microcontrollers only. Hence, it also features a low memory footprint and power optimisation features for microcontrollers.<\/p>\n\n\n\n<p>FreeRTOS also supports over 40 MCU architectures, including the latest RISC-V and ARMv8-M microcontrollers, along with a number of modular libraries for local or cloud connectivity support. FreeRTOS releases come in LTS (long term support) versions, so the longevity of your projects on FreeRTOS will be guaranteed.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/mLqbTRF8E-7YrHTVdSHwhXgPAsCx5rKyfCxi7kby5pyUVQepgqgrVP99ut_4yrxg88lPLkJLmT_NrLS0jvQz7xmvSoskYj5306YP0TGoQW0fublqy8saSojaazdDJIGUUb9VATUm\" alt=\"\" width=\"900\" height=\"437\" \/><figcaption>Source: FreeRTOS.org<\/figcaption><\/figure><\/div>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">FreeRTOS <strong>Development for the Pico<\/strong><\/h3>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>While the news has been quieter on official development for FreeRTOS, PicoCPP has recently shared their example <a href=\"https:\/\/github.com\/PicoCPP\/RPI-pico-FreeRTOS\">Blinky project with FreeRTOS<\/a> on GitHub. It uses a basic GPIO C++ class, and can be built by following the <a href=\"https:\/\/datasheets.raspberrypi.org\/pico\/getting-started-with-pico.pdf\">instructions for C projects on the Raspberry Pi Pico<\/a> with CMake.<\/p>\n\n\n\n<p>While the support for FreeRTOS on the Raspberry Pi is still a step behind RT-Thread OS, we can be hopeful for developments in the future!<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Summary<\/strong><\/h2>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>We\u2019re seeing many more platforms being developed for the Raspberry Pi Pico and its RP2040 chip. As more communities come together on this single platform, the future for the Pico and the microcontroller world is looking to be very promising and exciting!<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>For our previous coverage on the Raspberry Pi Pico, please visit:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/blog.seeedstudio.com\/blog\/2021\/01\/21\/raspberry-pi-pico-the-first-microcontroller-released-by-raspberry-pi-foundation-based-on-the-new-rp2040-mcu\/\">Raspberry Pi Pico, the first microcontroller released by Raspberry Pi Foundation, based on the new RP2040 MCU<\/a><\/li><li><a href=\"https:\/\/blog.seeedstudio.com\/blog\/2021\/01\/25\/programmable-io-with-raspberry-pi-pico\/\">Programmable I\/O with Raspberry Pi Pico<\/a><\/li><li><a href=\"https:\/\/blog.seeedstudio.com\/blog\/2021\/01\/29\/arduino-ide-support-announced-for-the-raspberry-pi-pico\/\">Arduino IDE Support Announced for the Raspberry Pi Pico!<\/a><\/li><\/ul>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Purchase a Raspberry Pi Pico<\/strong>!<\/h2>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The Raspberry Pi Pico is now available for preorder on the Seeed Online Store. <a href=\"https:\/\/www.seeedstudio.com\/Raspberry-Pi-Pico-p-4832.html\">Purchase yours now!<\/a><\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Another week brings another piece of exciting news for Raspberry Pi\u2019s brand new Raspberry Pi<\/p>\n","protected":false},"author":3537,"featured_media":40670,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","_price":"","_stock":"","_tribe_ticket_header":"","_tribe_default_ticket_provider":"","_tribe_ticket_capacity":"0","_ticket_start_date":"","_ticket_end_date":"","_tribe_ticket_show_description":"","_tribe_ticket_show_not_going":false,"_tribe_ticket_use_global_stock":"","_tribe_ticket_global_stock_level":"","_global_stock_mode":"","_global_stock_cap":"","_tribe_rsvp_for_event":"","_tribe_ticket_going_count":"","_tribe_ticket_not_going_count":"","_tribe_tickets_list":"[]","_tribe_ticket_has_attendee_info_fields":false,"iawp_total_views":0,"footnotes":""},"categories":[1],"tags":[1385,3640,3684,1287,1288],"class_list":["post-40661","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news","tag-freertos","tag-raspberry-pi-pico","tag-raspberry-pi-pico-support","tag-rt-thread","tag-rtos"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Rust, RT-Thread OS &amp; FreeRTOS come to the Raspberry Pi Pico - Latest News from Seeed Studio<\/title>\n<meta name=\"description\" content=\"The Raspberry Pi Pico is the new MCU from the Raspberry Pi Foundation. Learn about current and upcoming Rust, RT-ThreadOS &amp; FreeRTOS support for the Pico!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Rust, RT-Thread OS &amp; FreeRTOS come to the Raspberry Pi Pico - Latest News from Seeed Studio\" \/>\n<meta property=\"og:description\" content=\"The Raspberry Pi Pico is the new MCU from the Raspberry Pi Foundation. Learn about current and upcoming Rust, RT-ThreadOS &amp; FreeRTOS support for the Pico!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/\" \/>\n<meta property=\"og:site_name\" content=\"Latest News from Seeed Studio\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-05T08:27:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-07T01:30:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3000\" \/>\n\t<meta property=\"og:image:height\" content=\"1750\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jonathan Tan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jonathan Tan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/\",\"url\":\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/\",\"name\":\"Rust, RT-Thread OS &amp; FreeRTOS come to the Raspberry Pi Pico - Latest News from Seeed Studio\",\"isPartOf\":{\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png\",\"datePublished\":\"2021-02-05T08:27:04+00:00\",\"dateModified\":\"2021-02-07T01:30:04+00:00\",\"author\":{\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/#\/schema\/person\/61e29862da8741ee517eacd92f4cd094\"},\"description\":\"The Raspberry Pi Pico is the new MCU from the Raspberry Pi Foundation. Learn about current and upcoming Rust, RT-ThreadOS & FreeRTOS support for the Pico!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#primaryimage\",\"url\":\"https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png\",\"contentUrl\":\"https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png\",\"width\":3000,\"height\":1750},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.seeedstudio.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Rust, RT-Thread OS &amp; FreeRTOS come to the Raspberry Pi Pico\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/#website\",\"url\":\"https:\/\/www.seeedstudio.com\/blog\/\",\"name\":\"Latest News from Seeed Studio\",\"description\":\"Emerging IoT, AI and Autonomous Applications on the Edge\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.seeedstudio.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/#\/schema\/person\/61e29862da8741ee517eacd92f4cd094\",\"name\":\"Jonathan Tan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.seeedstudio.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d8dd1a4a7882386e8818e110c9322897?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d8dd1a4a7882386e8818e110c9322897?s=96&r=g\",\"caption\":\"Jonathan Tan\"},\"url\":\"https:\/\/www.seeedstudio.com\/blog\/author\/jonathan-tan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Rust, RT-Thread OS &amp; FreeRTOS come to the Raspberry Pi Pico - Latest News from Seeed Studio","description":"The Raspberry Pi Pico is the new MCU from the Raspberry Pi Foundation. Learn about current and upcoming Rust, RT-ThreadOS & FreeRTOS support for the Pico!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/","og_locale":"en_US","og_type":"article","og_title":"Rust, RT-Thread OS &amp; FreeRTOS come to the Raspberry Pi Pico - Latest News from Seeed Studio","og_description":"The Raspberry Pi Pico is the new MCU from the Raspberry Pi Foundation. Learn about current and upcoming Rust, RT-ThreadOS & FreeRTOS support for the Pico!","og_url":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/","og_site_name":"Latest News from Seeed Studio","article_published_time":"2021-02-05T08:27:04+00:00","article_modified_time":"2021-02-07T01:30:04+00:00","og_image":[{"width":3000,"height":1750,"url":"https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png","type":"image\/png"}],"author":"Jonathan Tan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jonathan Tan","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/","url":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/","name":"Rust, RT-Thread OS &amp; FreeRTOS come to the Raspberry Pi Pico - Latest News from Seeed Studio","isPartOf":{"@id":"https:\/\/www.seeedstudio.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#primaryimage"},"image":{"@id":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#primaryimage"},"thumbnailUrl":"https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png","datePublished":"2021-02-05T08:27:04+00:00","dateModified":"2021-02-07T01:30:04+00:00","author":{"@id":"https:\/\/www.seeedstudio.com\/blog\/#\/schema\/person\/61e29862da8741ee517eacd92f4cd094"},"description":"The Raspberry Pi Pico is the new MCU from the Raspberry Pi Foundation. Learn about current and upcoming Rust, RT-ThreadOS & FreeRTOS support for the Pico!","breadcrumb":{"@id":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#primaryimage","url":"https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png","contentUrl":"https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png","width":3000,"height":1750},{"@type":"BreadcrumbList","@id":"https:\/\/www.seeedstudio.com\/blog\/2021\/02\/05\/rust-rt-thread-os-freertos-come-to-the-raspberry-pi-pico\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.seeedstudio.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Rust, RT-Thread OS &amp; FreeRTOS come to the Raspberry Pi Pico"}]},{"@type":"WebSite","@id":"https:\/\/www.seeedstudio.com\/blog\/#website","url":"https:\/\/www.seeedstudio.com\/blog\/","name":"Latest News from Seeed Studio","description":"Emerging IoT, AI and Autonomous Applications on the Edge","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.seeedstudio.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.seeedstudio.com\/blog\/#\/schema\/person\/61e29862da8741ee517eacd92f4cd094","name":"Jonathan Tan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.seeedstudio.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d8dd1a4a7882386e8818e110c9322897?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d8dd1a4a7882386e8818e110c9322897?s=96&r=g","caption":"Jonathan Tan"},"url":"https:\/\/www.seeedstudio.com\/blog\/author\/jonathan-tan\/"}]}},"modified_by":"Jonathan Tan","views":28611,"featured_image_urls":{"full":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png",3000,1750,false],"thumbnail":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-80x80.png",80,80,true],"medium":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-300x175.png",300,175,true],"medium_large":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-768x448.png",640,373,true],"large":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-1030x601.png",640,373,true],"1536x1536":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-1536x896.png",1536,896,true],"2048x2048":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-2048x1195.png",2048,1195,true],"visody_icon":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24.png",32,19,false],"magazine-7-slider-full":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-1536x1020.png",1536,1020,true],"magazine-7-slider-center":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-936x897.png",936,897,true],"magazine-7-featured":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-1024x597.png",1024,597,true],"magazine-7-medium":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-720x380.png",720,380,true],"magazine-7-medium-square":["https:\/\/www.seeedstudio.com\/blog\/wp-content\/uploads\/2021\/02\/Copy-of-Clean-24-675x450.png",675,450,true]},"author_info":{"display_name":"Jonathan Tan","author_link":"https:\/\/www.seeedstudio.com\/blog\/author\/jonathan-tan\/"},"category_info":"<a href=\"https:\/\/www.seeedstudio.com\/blog\/category\/news\/\" rel=\"category tag\">News<\/a>","tag_info":"News","comment_count":"0","_links":{"self":[{"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/posts\/40661","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/users\/3537"}],"replies":[{"embeddable":true,"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/comments?post=40661"}],"version-history":[{"count":11,"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/posts\/40661\/revisions"}],"predecessor-version":[{"id":40715,"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/posts\/40661\/revisions\/40715"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/media\/40670"}],"wp:attachment":[{"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/media?parent=40661"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/categories?post=40661"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.seeedstudio.com\/blog\/wp-json\/wp\/v2\/tags?post=40661"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}