Successful Deployment of Deep Learning Gait Recognition Algorithm on Allwinner V853 Platform

Successful Deployment of Deep Learning Gait Recognition Algorithm on Allwinner V853 Platform

Student Xin Zhe from the research group successfully ported the deep learning gait recognition algorithm GaitSet to the Allwinner V853 development board as part of his undergraduate thesis titled “Research on Gait Recognition Based on Embedded Systems”. This study was tested on the CASIA-B dataset, achieving a gait recognition accuracy of 94.9% under normal walking … Read more

Successful Deployment of Deep Learning Gait Recognition Algorithm on Allwinner V853 Platform

Successful Deployment of Deep Learning Gait Recognition Algorithm on Allwinner V853 Platform

Xinzhe Xin from the Communication Research Group at Beijing Institute of Technology successfully ported the deep learning gait recognition algorithm GaitSet to the Allwinner V853 development board as part of his undergraduate thesis titled “Research on Gait Recognition Based on Embedded Systems.” This study was tested on the CASIA-B dataset, achieving a gait recognition accuracy … Read more

Essential Knowledge for PCB Professionals (Including Major PCB Manufacturers)

Essential Knowledge for PCB Professionals (Including Major PCB Manufacturers)

1. Introduction to PCB Materials(1) Concept, Function, and Background of Printed Circuit Boards1. The English term for printed circuit board: Printed Circuit Board2. The abbreviation for printed circuit board: PCB3. The main functions of printed circuit boards: to support circuit components and interconnect circuit components, namely the two main roles of support and interconnection.4. PCBs … Read more

Detailed Explanation of FreeRTOS Task Management and Communication Mechanisms

Detailed Explanation of FreeRTOS Task Management and Communication Mechanisms

1 Task Creation and Management Task Creation Use <span>xTaskCreate()</span> to create a task: BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, // Task function (entry) const char * const pcName, // Task name (for debugging) configSTACK_DEPTH_TYPE usStackDepth, // Stack size (in words) void * const pvParameters, // Task parameters UBaseType_t uxPriority, // Priority (0~configMAX_PRIORITIES-1) TaskHandle_t * const pxCreatedTask // … Read more

Guide to Building an RTOS Kernel (Part 1)

Guide to Building an RTOS Kernel (Part 1)

1IntroductionImagine if the MCU we work with only runs bare-metal programs; when it reaches a thread that includes a delay, our CPU would start to “idle”.To maximize CPU utilization, we need to use an RTOS (Real-Time Operating System). In simple terms, an RTOS is an operating system that schedules all available resources to complete real-time … Read more

MCU Network Communication: Is One USB Cable Enough?

MCU Network Communication: Is One USB Cable Enough?

1. Introduction The previous article “Unlocking the Potential of LwIP: Easily Implementing Multi-NIC for MCU” mainly introduced how to utilize the high-speed USB 2.0 480Mbps interface of the Xianji Semiconductor high-performance MCU as a USB Host to connect USB 4G modules or USB network cards, and combined with the Ethernet PHY interface to achieve multi-NIC … Read more

When FPGA Meets Open Source: A Paradigm Shift

When FPGA Meets Open Source: A Paradigm Shift

Open source is a buzzword. A few years ago, the open-source architecture RISC-V emerged, creating significant waves in the chip design field due to its open characteristics.. Earlier this year, the open-source large model DeepSeek made a grand debut, igniting further interest in AI. Now, this wave has reached the FPGA . 01The World’s First … Read more

STM32 Project Share: Smart Home Appliance Control System

STM32 Project Share: Smart Home Appliance Control System

Project Finished Product Image: Bilibili Video Link: https://www.bilibili.com/video/BV1hZBBYwEHb/?share_source=copy_web&vd_source=097fdeaf6b6ecfed8a9ff7119c32faf2 (See end of article for resource sharing) 01 — Project Introduction 1. Function Details STM32 Smart Home Appliance Control System Functions are as follows: STM32F103C8T6 microcontroller board as the main control unit Display function: Real-time display of temperature and humidity data on OLED screen Automatic control: Determine … Read more

STM32 Project Sharing: Smart Greenhouse (Bluetooth Version)

STM32 Project Sharing: Smart Greenhouse (Bluetooth Version)

Project Product Images: Bilibili Video Link: https://www.bilibili.com/video/BV1syFAe6Ee7/?share_source=copy_web&vd_source=097fdeaf6b6ecfed8a9ff7119c32faf2 (Material sharing can be found at the end of the article) 01 — Project Overview 1. Function Details STM32 Smart Greenhouse (Bluetooth Version) The functions are as follows: STM32F103C8T6 microcontroller as the main controller Waterproof DS18B20 detects soil temperature. When the temperature exceeds the set maximum value, an … Read more