<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Shamanth Poojary</title>
    <description>The latest articles on DEV Community by Shamanth Poojary (@shamanth_poojary).</description>
    <link>https://dev.to/shamanth_poojary</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4130795%2Fe4f54ea9-550c-447b-932d-50f4bb201f40.jpg</url>
      <title>DEV Community: Shamanth Poojary</title>
      <link>https://dev.to/shamanth_poojary</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shamanth_poojary"/>
    <language>en</language>
    <item>
      <title>UartX – Cross-platform UART terminal &amp; debugging tool</title>
      <dc:creator>Shamanth Poojary</dc:creator>
      <pubDate>Fri, 18 Sep 2026 04:31:05 +0000</pubDate>
      <link>https://dev.to/shamanth_poojary/uartx-cross-platform-uart-terminal-debugging-tool-281g</link>
      <guid>https://dev.to/shamanth_poojary/uartx-cross-platform-uart-terminal-debugging-tool-281g</guid>
      <description>&lt;p&gt;I built UartX, a cross-platform UART terminal and debugging tool for embedded and firmware developers.&lt;/p&gt;

&lt;p&gt;When multiple firmware tasks are printing logs at the same time, debugging can quickly turn into a wall of text. The usual solution is to disable logs, reduce the log level, or modify the firmware — but that can also remove useful information or change timing and make a bug harder to reproduce.&lt;/p&gt;

&lt;p&gt;UartX is built around a simple idea:&lt;/p&gt;

&lt;p&gt;"Don't filter the data. Filter the way you look at it."&lt;/p&gt;

&lt;p&gt;UartX keeps the complete raw UART stream while giving you tools to focus on what matters:&lt;/p&gt;

&lt;p&gt;Color Rules to highlight important messages&lt;br&gt;
Multiple live Filter Windows for different tasks, errors, or states&lt;br&gt;
Raw session logging without adding timestamps or other formatting&lt;br&gt;
Search through captured output&lt;br&gt;
TX command history&lt;br&gt;
Configurable display options&lt;br&gt;
Windows and Linux support&lt;br&gt;
Free and open source under the MIT License&lt;/p&gt;

&lt;p&gt;The goal is to make firmware debugging easier without requiring changes to the existing logging in your firmware.&lt;/p&gt;

&lt;p&gt;I've tested it with my own embedded projects, but I want to see how it performs with different hardware, firmware architectures, and real-world debugging workflows.&lt;/p&gt;

&lt;p&gt;If you work with STM32, ESP32, Nordic, Zephyr, RTOS, or other embedded systems, I'd really appreciate you trying it.&lt;/p&gt;

&lt;p&gt;If you find a bug, something that behaves unexpectedly, or have a feature idea, please share it on GitHub.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/Shamanthpoojary/UartX" rel="noopener noreferrer"&gt;https://github.com/Shamanthpoojary/UartX&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd also like to hear what you currently use for UART debugging and what you wish your terminal could do better.&lt;/p&gt;

&lt;p&gt;Main Window: Too many logs?&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8c5wy55fzo7n1zzzfmeq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8c5wy55fzo7n1zzzfmeq.png" alt=" " width="800" height="470"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Color Rules: Define keywords and highlight important messages with custom colors.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3wfmlpha1ngm2b53qahl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3wfmlpha1ngm2b53qahl.png" alt=" " width="800" height="470"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Filter Window: See only the messages you need without changing your firmware or deleting logs.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F21zr5u2bcjdoar5tgvld.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F21zr5u2bcjdoar5tgvld.png" alt=" " width="800" height="472"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>iot</category>
      <category>firmware</category>
      <category>uart</category>
      <category>embedded</category>
    </item>
  </channel>
</rss>
