Mastering Go’s Best Debugger Delve: A Comprehensive Guide

Mastering Go's Best Debugger Delve: A Comprehensive Guide

👉Introduction Delve is the most widely used debugger in Go. This article introduces debugging in Go based on Delve. If you are frustrated with log-based debugging, you might want to check this out. After reading the full article, you can also participate in the Lunar New Year red envelope cover lottery at the end! 👉Table … Read more

Investigating Coredump File Truncation Issues

Investigating Coredump File Truncation Issues

This article is excerpted from the “ByteDance Infrastructure Practice” series. The “ByteDance Infrastructure Practice” series is a collection of technical content created by various technical teams and experts from ByteDance’s infrastructure department, sharing the team’s practical experiences and lessons learned during the development and evolution of infrastructure, and engaging in discussions with fellow technical colleagues. … Read more

Understanding the Debugging Tool – GDB

Understanding the Debugging Tool - GDB

Advertising Time Click the card below and give us a follow before you go! 1. Introduction to GDB GDB (GNU Debugger) is a powerful open-source debugging tool that helps developers debug programs written in languages such as C/C++. Mastering the basic usage of GDB is very beneficial for both beginners and experienced programmers. This article … Read more

GDB-Python: The Wizard of GDB Debugging

GDB-Python: The Wizard of GDB Debugging

Hello everyone, today I want to share a super useful debugging tool – the Python extension for GDB! As a Python developer, debugging code is an essential skill. By combining GDB with Python scripts, we can make debugging smarter and more efficient. Let’s explore this powerful debugging tool together! What is GDB-Python? GDB-Python is a … Read more

Understanding Map Files in Keil

Understanding Map Files in Keil

Follow+Star Public Account, don’t miss the wonderful content Author | strongerHuang WeChat Official Account | Embedded Column What is a map file? In simple terms: a map file is a mapping file that integrates the program, data, and IO space after compilation by the compiler. Many technically skilled engineers first think of analyzing the map … Read more

Keil MDK Debugging Features Overview

Keil MDK Debugging Features Overview

Follow+Star Public Number, don’t miss wonderful content Author | strongerHuang WeChat Public Account | Embedded Column Although Keil is often criticized, especially for its interface that feels like it’s from the last century (actually, IAR is similar), but its debugging features should be above reproach, especially for debugging Cortex-M core microcontrollers. Keil MDK supports a … Read more

Remote Debugging of MIPS Executables with QEMU and IDA

Remote Debugging of MIPS Executables with QEMU and IDA

Introduction Remote debugging with QEMU is quite simple; just enable the -g parameter to bind to a local port. However, IDA requires some configuration to debug MIPS architecture binary files and pause processes for debugging. (There are many online tutorials on how to run IDA in Linux and set up the buildroot environment, or feel … Read more

Key Considerations for Zephyr Driver Initialization

Key Considerations for Zephyr Driver Initialization

1. Basic Mechanism of Driver Initialization Zephyr’s driver initialization is implemented through the following mechanisms: Device Tree : Hardware resources are defined through the device tree, and the driver relies on this information for initialization. Initialization Macros (DEVICE_DT_DEFINE and DEVICE_DEFINE) : The driver registers to Zephyr’s device model using these macros. Initialization Priority : The … Read more

Essential Tools and Devices for Embedded Development

Essential Tools and Devices for Embedded Development

For technology enthusiasts aspiring to enter the field of embedded development, understanding and preparing the relevant tools and devices is an important step in starting this journey. This article will detail the indispensable tools and devices in the embedded development process. 01 Development Tools 1. Development Boards The development board is the core hardware platform … Read more