Common Serial Debugging Tools for Engineers

Common Serial Debugging Tools for Engineers

Engineers familiar with embedded development are certainly no strangers to serial debugging tools. These tools help engineers capture, analyze, and debug data transmitted via serial ports, ensuring system stability and performance. This article will delve into several commonly used serial debugging tools by engineers, hoping to assist you. 1. SSCOM: A Representative of Stability and … Read more

ET-UARTSWD: An Efficient Tool for Motor and Power Circuit Development

ET-UARTSWD: An Efficient Tool for Motor and Power Circuit Development

ET-UARTSWD: An Efficient Tool for Motor and Power Circuit Development In the process of electronic engineering R&D, the quality of debugging tools directly affects project progress and product quality. From the physical image, we can see that ET-UARTSWD, as a debugging tool specifically designed for engineers, is not only made with high-quality materials in hardware … Read more

GDB Tool for RISC-V Platform: A Practical Guide

GDB Tool for RISC-V Platform: A Practical Guide

Considering the limited debugging tools for the RISC-V platform, I compiled a version of GDB and GDB server suitable for RISC-V based on the source code from the GDB official website: gdb-12.1. I have verified its functionality on RISC-V terminal devices. The tools have been uploaded to my personal GitHub: https://github.com/season727/gdb_12.1_risc-v Compilation Toolchain: Xuantie-900-gcc-linux-6.6.0-musl64-x86_64-V2.10.2-20240904 Due … Read more

GDB Command Summary

GDB Command Summary

1. Start gdb -q: Suppress unnecessary output. file a.out: Specify the debug file. gdb –args a.out a.txt: Specify arguments. set args a.txt: Specify arguments after starting gdb. run a.txt: Run with specified arguments. start a.txt: Start with specified arguments (break at main). cd $dir; path $dir: Specify environment variables. run > a.txt: Redirect output to … Read more

A Comprehensive Embedded Development Debugging Tool

A Comprehensive Embedded Development Debugging Tool

In the workplace, what is the most direct and efficient way to report work to leaders? Of course, it’s through a graphical interface! A graphical interface can better express the logical thinking of a program design, making it clear at a glance. Today, I would like to share a professional and comprehensive embedded debugging toolset: … Read more

A Comprehensive Embedded Development Debugging Tool

A Comprehensive Embedded Development Debugging Tool

Follow+Star Public Account, never miss exciting content Author | ZhiGuoXin WeChat Official Account | GuoGuoLittleBrother Have you ever used debugging tools for embedded development? Today I am excited to share a professional and comprehensive embedded debugging toolset: Micro-Lab Before sharing the main content, let me recommend some embedded-related positions: What is Micro-Lab? Micro-Lab is arguably … Read more

Practical Tools Based on RTOS

Practical Tools Based on RTOS

Note+Follow Our Public Account for Exciting Content to Stay Updated Source | Mictech Technology WeChat Official Account | Embedded Column More and more embedded systems rely on the use of Real-Time Operating Systems (RTOS) to meet real-time demands, reduce time to market, simplify development, and increase code portability. Despite the many benefits of RTOS, it … Read more