Configuring WiFi on ELF2 Development Board Running Ubuntu System with Intel AX200
Configuring WiFi on ELF2 Development Board Running Ubuntu System with Intel AX200
Before proceeding with WiFi configuration, you need to flash the Ubuntu system onto the development board. There are two approaches available:
Method 1: Copy kernel modules from an existing buildroot system's /usr/lib/modules directory to the corresponding locatio ...
Posted on Sun, 02 Aug 2026 16:17:56 +0000 by darkjedig
Custom YOLOv5 Model Deployment on ELF2 Development Board
Prepraing Custom Dataset
Organize VOC-format dataset with this directory structure:
VOC_CUSTOM/
├── Annotations/
├── ImageSets/
│ └── Main/
└── JPEGImages/
Execute dataset splitting script:
# dataset_split.py
import os
import random
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('--xml_path', default='Annotations/', ...
Posted on Fri, 31 Jul 2026 16:42:10 +0000 by richardjh