Struggling to Find Paths with CMake? The Find Family Commands Make It Easy!

Struggling to Find Paths with CMake? The Find Family Commands Make It Easy!

Click the blue text to follow the author 1. Introduction In complex software projects, dependency management is one of the core challenges during the build process. When we use CMake to build projects, we often need to introduce external libraries, header files, executables, or configuration files. Manually specifying the paths for these external dependencies can … Read more

DAPLink: A One-Stop Solution for Embedded Programming, Debugging, and Serial Logging

DAPLink: A One-Stop Solution for Embedded Programming, Debugging, and Serial Logging

Developers working on embedded systems have certainly encountered issues such as tedious programming, difficult debugging, and lengthy log collection. Today, I would like to recommend a powerful tool—DAPLink—that provides a one-stop solution for programming, debugging, and serial logging, making the process incredibly smooth! What is DAPLink? In simple terms, DAPLink is firmware that runs on … Read more

Cross-Platform TTY Shell Implementation in C++ (Part 2) – Server Implementation and Advanced Features

Cross-Platform TTY Shell Implementation in C++ (Part 2) - Server Implementation and Advanced Features

Disclaimer:The user is responsible for any direct or indirect consequences and losses caused by the dissemination and use of the information provided by this public account. The public account and the author do not bear any responsibility for this, and any consequences must be borne by the user! 01 Core Architecture of the Server In … Read more

[Open Source] RustDesk: A Revolutionary Choice for Open Source Remote Desktop

[Open Source] RustDesk: A Revolutionary Choice for Open Source Remote Desktop

🚀 Project Overview RustDesk is an open-source remote desktop software written in Rust, designed to be the perfect alternative to TeamViewer. It is ready to use out of the box, requiring no complex configuration, allowing you to have complete control over your data without worrying about security issues. Project Address: https://github.com/rustdesk/rustdesk ✨ Core Features 🔧 … Read more

Goodbye printf! Efficient Logging Solutions for Embedded Systems

Goodbye printf! Efficient Logging Solutions for Embedded Systems

Click the aboveblue text to follow us In the field of embedded system development, logging systems are like black boxes in the digital world, carrying key information about the system’s operational status. The traditional printf debugging method, while simple and easy to use, exposes significant issues such as low efficiency, high resource consumption, and poor … Read more

Introduction to CMake Basics

Introduction to CMake Basics

Introduction to CMake 1. Overview of CMake CMake is a project build tool that is cross-platform. Other popular project build tools include Makefile (which builds projects using the Make command). Most IDEs integrate make, such as: nmake for VS, GNU make for Linux, and qmake for Qt. If you write a makefile by hand, you … Read more

PyQt: The Golden Combination for Python GUI Development

PyQt: The Golden Combination for Python GUI Development

1. Core Positioning of PyQt PyQt is the Python binding for the Qt framework, seamlessly porting the C++ Qt library to the Python ecosystem, providing: Cross-platform capability: Full support for Windows/macOS/Linux Dual licensing model: GPL (open source and free) and commercial license (closed source for commercial use) Modular architecture: Includes core modules such as QtWidgets … Read more

libmetal: A Unified Abstraction Layer for Real-Time Operating Systems (RTOS), Bare-Metal Environments, and User-Space Linux

libmetal: A Unified Abstraction Layer for Real-Time Operating Systems (RTOS), Bare-Metal Environments, and User-Space Linux

libmetal is an open-source project designed to provide a unified abstraction layer for real-time operating systems (RTOS), bare-metal environments, and user-space Linux environments. This framework offers a common user API, ensuring consistency and convenience in operations such as device access, device interrupt handling, and memory requests across different operating environments. This article will detail the … Read more

The Most Stupid Bug in Embedded C Language History

The Most Stupid Bug in Embedded C Language History

From: CoolShell Link: https://coolshell.cn/articles/5388.html Original: https://www.elpauer.org/2011/08/the-most-stupid-c-bug-ever/ This article is based on “The most stupid C bug ever” and is quite interesting, so I am sharing it with everyone. I believe that even if you are an expert, you could make such a bug. Let’s take a look at the bug made by the author. First, … Read more

Open Source GUI Framework Based on C Language: Powerful, Efficient, Reliable, and Easy to Use

Open Source GUI Framework Based on C Language: Powerful, Efficient, Reliable, and Easy to Use

Yifei Open Source introduces creative, novel, interesting, practical open-source applications, systems, software, hardware, and technologies, serving as a platform for exploration, discovery, sharing, usage, and interaction within the open-source technology community. Committed to building a vibrant open-source community and co-creating a new open-source ecosystem! 1. Introduction to the Open Source Project AWTK, short for Toolkit … Read more