CGDB: A More Convenient Debugging Tool Than GDB

CGDB: A More Convenient Debugging Tool Than GDB

Table of Contents Example Code with Bugs GDB Debugging Operations CGDB Debugging Operations Learning from Others’ Experiences! CGDB is a frontend for GDB, providing a graphical interface in the terminal for debugging code (based on ncurse), which is very convenient. Compared to GDB, it can significantly improve efficiency. This article will share the most basic … Read more

Mbed OS: An Open Source Embedded Operating System

Mbed OS: An Open Source Embedded Operating System

Mbed OS is an open-source embedded operating system launched by Arm for Internet of Things (IoT) devices. It provides a comprehensive solution for developing connected products based on Arm Cortex-M microcontrollers, covering security, connectivity, real-time operating system (RTOS), as well as drivers for sensors and I/O devices. This article will delve into the usage of … Read more

Detailed Explanation of Makefile in Linux

Detailed Explanation of Makefile in Linux

👆Click the blue text "Linux Armory" at the top, then select "Set as Star" at the top right Don’t miss out on great articles, see valuable content first. 👆FollowLinux Armory, and receive hardcore Linux learning materials and code Makefile is a tool used for building and managing projects, especially suitable for C/C++ projects. It defines … Read more

Yocto/GL: An Incredible C++ Library for Graphics

Yocto/GL: An Incredible C++ Library for Graphics

In the modern programming field, C++ is renowned for its high performance and flexibility. In the realm of graphics programming, the Yocto/GL library stands out for its lightweight, high performance, and ease of use. This article will take you on a deep dive into Yocto/GL, from installation to practical examples, enabling you to quickly get … Read more

Empowering Embedded System Communication Protocols with C++

Empowering Embedded System Communication Protocols with C++

The “Marriage” of Embedded Systems and Communication Protocols In today’s wave of digitalization, embedded systems are like a magical “behind-the-scenes hero,” quietly penetrating every aspect of our lives. When you drive a car, the embedded system in the engine control system accurately adjusts fuel injection and ignition timing, ensuring efficient and stable power output; the … Read more

Deep Dive Into Classes and Objects in C++

Deep Dive Into Classes and Objects in C++

Everyone, it’s time to learn again! Today! What spiritual food are we bringing? It’s classes! A class is a collection of objects that have the same attributes and operations, providing a unified abstract description for all objects belonging to that class. It includes two main parts: attributes (data variables) and operations (member functions). In short, … Read more

C++ Open Source Project Suitable for Embedded Systems – Workflow

C++ Open Source Project Suitable for Embedded Systems - Workflow

Before joining Tencent, I had never really developed a complete project in C++. However, I was quickly thrown into the deep end, as the people at Tencent particularly enjoy using C++, and they do it exceptionally well. This time, I would like to recommend an open-source C++ project for those who love C++ or want … Read more

In-Depth Understanding of C++ and C Language Similarities and Differences

In-Depth Understanding of C++ and C Language Similarities and Differences

Hello everyone, nice to see you again! Continuing from our last session, we have set up a warm and comfortable environment for C++ development. Today, I will guide you to understand the relationship between C and C++, reviving our long-dormant memories of C! Differences Between C++ and C First and foremost, the simplest difference is … Read more

Cultivating Embedded C/C++ Programming Skills

Cultivating Embedded C/C++ Programming Skills

Follow “Embedded Miscellany“, and choose “Star Official Account” to progress together! Source: CSDN What makes a good programmer? Is it knowing many technical details? Or understanding low-level programming? Or being fast at coding? I think none of these. For some technical details and low-level technologies, you can find them in help documents or by researching. … Read more