Design of Smart Home Controller Using ZigBee Technology

Design of Smart Home Controller Using ZigBee Technology

Selected from 21ic Forum, TI Wireless Connection Subforum, original post link at the bottom “Read Original” The smart home controller introduced in this article utilizes ZigBee technology to integrate many relatively independent household appliances into a unified smart home system, facilitating local operation of various electrical devices in the home, while also enabling remote control … Read more

Application of Embedded Linux in Industrial IoT Gateway Development

Application of Embedded Linux in Industrial IoT Gateway Development

>Total 734 words, reading time approximately 2 minutes< Embedded Linux refers to a version of standard Linux that has been miniaturized and tailored to fit into memory chips or microcontrollers with only a few kilobytes or megabytes of capacity, suitable for specific embedded applications with a specialized Linux operating system. Smart Manufacturing The success of … Read more

Free Trial of BSP Development Course: Hands-On Learning

Free Trial of BSP Development Course: Hands-On Learning

The course is divided into two parts: Phase One and Phase Two. Phase One focuses on the basic operations of the development board (suitable for students with relatively weak foundations). Based on the SDK source code provided by the manufacturer, it offers hands-on basic usage explanations using the 100ask T113 development board. Emphasis is placed … Read more

Step-by-Step Guide to Building Root Filesystem with Buildroot

Step-by-Step Guide to Building Root Filesystem with Buildroot

The three main components of embedded systems: bootloader (uboot), Linux kernel, root filesystem. There are three powerful tools for creating root filesystems: busybox, buildroot, yocto. Using busybox to build the filesystem only helps us set up some common commands and files. Libraries, files in the /etc directory, etc., need to be created manually, and we … Read more

Building Embedded Linux with Yocto and Buildroot

Building Embedded Linux with Yocto and Buildroot

Scan and follow to learn embedded systems together, learn and grow together. Doing Linux system development primarily revolves around the root file system, as uboot and kernel are generally provided by the manufacturer, and drivers for peripherals are also provided officially, so the actual development work is minimal. The most challenging aspect of building the … Read more

Building Embedded Linux with Yocto and Buildroot

Building Embedded Linux with Yocto and Buildroot

Most of the work in Linux system development revolves around the root filesystem, as uboot and kernel are generally provided by the manufacturer, and drivers for peripherals are also provided by the official sources. The main development work is not extensive. The most challenging aspect of building the root filesystem is ensuring that the versions … Read more

Building Embedded Linux with Yocto and Buildroot

Building Embedded Linux with Yocto and Buildroot

Follow and star our public account for exciting content Doing Linux system development mainly revolves around the root filesystem, as uboot and kernel are generally provided by the manufacturer, and the peripherals also have official drivers available for porting, making the development work relatively minimal. The most challenging aspect of building the root filesystem is … Read more

Building a Custom Linux System with Buildroot

Building a Custom Linux System with Buildroot

Introduction to Buildroot Buildroot is a tool for automating the building of embedded Linux systems. Buildroot can generate cross-compilation toolchains, root filesystems, Linux kernel images, and bootloaders. Buildroot can be used independently with any combination of these options (for example, you can use an existing cross-compilation toolchain and only use Buildroot to build your root … Read more

Creating Embedded Linux Systems with Buildroot

Creating Embedded Linux Systems with Buildroot

Click/ the blue text above/ to follow me Original: https://marcocetica.com/posts/buildroot-tutorial/ Detailed configuration screenshots for Cloudflare Zero Trust secure browsing This tutorial will guide you through the process of creating a small Linux distribution for ARM-based embedded devices (like Raspberry Pi) using Buildroot. By the end of this article, you will be able to run your … Read more

Introduction to Buildroot

Introduction to Buildroot

Originally from CSDN, this record is for the author’s learning needs. Author: xixihaha331 What is Buildroot Buildroot is a framework for building embedded Linux systems on the Linux platform. The entire Buildroot consists of Makefile scripts and Kconfig configuration files. Just like compiling the Linux kernel, you can configure Buildroot, modify it using menuconfig, and … Read more