VxWorks Programmer’s Guide

VxWorks Programmer's Guide

Content Overview This book is one of the “VxWorks Developer’s Guide Series”: the VxWorks Programmer’s Guide, translated from the technical documentation “VxWorks Programmer’s Guide” by Wind River. Main topics include: Introduction to VxWorks, fundamentals of operating systems, POSIX standard interfaces, input/output interface technologies, local file systems, usage of target debugging tools, C++ development techniques, flash … Read more

The Ubiquitous BusyBox: How to Create a Minimal Linux Environment with It

The Ubiquitous BusyBox: How to Create a Minimal Linux Environment with It

Follow the public account below for more hot news The Ubiquitous BusyBox: How to Create a Minimal Linux Environment with It What is BusyBox BusyBox combines commonly used UNIX utility programs into a single executable file, providing an efficient and space-saving solution. Common tools such as ls, cp, cat, echo, mount, ps, etc., can all … Read more

Introduction to BusyBox: A Lightweight Command System for Embedded Devices

Introduction to BusyBox: A Lightweight Command System for Embedded Devices

As we all know, embedded devices typically have limited storage and resources. This is where BusyBox, a command system for embedded devices, comes into play. BusyBox is characterized by its powerful functionality while occupying a small storage capacity. Today, I will introduce how to download and compile BusyBox for your embedded device. Introduction to BusyBox … Read more

BusyBox Technical Guide: The Swiss Army Knife of Embedded Systems

BusyBox Technical Guide: The Swiss Army Knife of Embedded Systems

BusyBox Technical Guide: The Swiss Army Knife of Embedded Systems 1. Core Introduction The Swiss Army Knife of Embedded Development Tools BusyBox is like a digital Swiss Army knife, condensing over 300 commonly used Linux tools (such as ls, grep, vi, etc.) into a single executable file of about 2MB. It was born in 1996 … Read more

FreeRTOS Series Article 27 – Analysis of FreeRTOS System Delays

FreeRTOS Series Article 27 - Analysis of FreeRTOS System Delays

Follow and star our public account, to access exciting content ID: Technology Makes Dreams Greater Author: Li Xiaoyao FreeRTOS provides two system delay functions: the relative delay function vTaskDelay() and the absolute delay function vTaskDelayUntil(). Relative delay means that each delay starts from the execution of the task function vTaskDelay() and ends after the specified … Read more

In-Depth Discussion on FreeRTOS Tasks

In-Depth Discussion on FreeRTOS Tasks

👩💻 [Unveiling the RTOS World] A Deep Dive into the Five States of Tasks, Enabling You to Master the Art of Embedded Scheduling! 👋 Have you ever wondered how smart devices like smartwatches, drones, and robotic vacuum cleaners manage various tasks in their “brains”? Today, we will explore the “Five Brothers of Task States” in … Read more

Flash Lifetime Prediction and Monitoring in Embedded Systems

Flash Lifetime Prediction and Monitoring in Embedded Systems

Click on the aboveblue text to follow us Flash memory has a wide range of applications in embedded systems, especially in scenarios requiring large-capacity non-volatile storage, such as firmware storage, logging, and data backup. However, due to the physical characteristics of Flash, it faces the risk of failure after a limited number of erase-write cycles. … Read more

Why Use RTOS in Embedded Systems? 5 Common Open Source RTOS

Why Use RTOS in Embedded Systems? 5 Common Open Source RTOS

In today’s rapidly advancing technology, embedded systems have permeated our daily lives, from smart homes to automotive electronics, they are everywhere. Behind these complex systems, Real-Time Operating Systems (RTOS) provide strong support. Today, we will delve into the importance of RTOS, its basic elements, and some commonly used open-source RTOS. Why Use RTOS in Embedded … Read more

FPGA and DSP as Motor Control Chips: A Comprehensive Analysis of Advantages and Disadvantages (Part 1)

FPGA and DSP as Motor Control Chips: A Comprehensive Analysis of Advantages and Disadvantages (Part 1)

In motor control systems,FPGA (Field Programmable Gate Array) and DSP (Digital Signal Processor) are two commonly used chip solutions, each with unique advantages and limitations. The following is a comparative analysis of them: 1. Advantages and Disadvantages of FPGA Advantages: Parallel Processing Capability The hardware architecture of FPGA supports multi-task parallel execution, such as simultaneously … Read more

FreeRTOS Examples: A Collection of FreeRTOS Code Samples and a Practical Textbook for Embedded Real-Time Systems

FreeRTOS Examples: A Collection of FreeRTOS Code Samples and a Practical Textbook for Embedded Real-Time Systems

In the world of embedded development, every engineer has their own “secret weapon.” Today, I want to talk about FreeRTOS Examples, a project that not only preserves the core examples of FreeRTOS but also serves as a treasure trove filled with practical charm. Whether you are a beginner or an experienced developer, you can find … Read more