Wiznet makers

gunn

Published August 13, 2026 ©

106 UCC

5 VAR

0 Contests

0 Followers

0 Following

Original Link

Systembase eHaLow/Br

The eHaLow/Br by SystemBase is a next-generation wireless LAN gateway bridge designed for long-range IoT data transmission.

COMPONENTS Hardware components

WIZnet - W5500

x 1


PROJECT DESCRIPTION

1. Overview

The eHaLow/Br by SystemBase is a next-generation wireless LAN gateway bridge designed for long-range IoT data transmission. Utilizing the recently established IEEE 802.11ah Wi-Fi HaLow standard, it operates on sub-1GHz frequencies to provide exceptional range and obstacle penetration for field devices. It natively supports IEEE 802.3 10/100 Base-TX Ethernet, enabling seamless bi-directional conversion between legacy wired LAN systems and Wi-Fi HaLow wireless networks over distances up to 1.5km (Line of Sight).


 

2. Project at a Glance

Category

Details

Creator

SystemBase (시스템베이스)

Repository

Closed Source (Commercial Product)

MCU

Internal Application MCU (Not specified in public docs)

WIZnet Chip

W5500 (Assumed for 10/100 Base-TX Ethernet PHY/MAC)

Interface

Ethernet (RJ45), Wi-Fi HaLow (Antenna)

License

Proprietary / Commercial

3. Features

IEEE 802.11ah Wi-Fi HaLow: Implements the latest sub-1GHz Wi-Fi standard to guarantee high penetration rates and extended area coverage compared to traditional 2.4GHz Wi-Fi.
 
Long-Range Communication: Achieves up to 1.5km Line of Sight (LOS) transmission, eliminating the need for complex intermediate repeaters in large outdoor areas.
 
Standard Ethernet Support: Fully compatible with IEEE 802.3 10/100 Base-TX, ensuring plug-and-play operation for standard IP cameras, PLCs, and network terminals.
 
Transparent Bridging: Converts wired LAN packets to wireless LAN packets dynamically without requiring changes to the end-device IP configuration.
 

4. System Architecture

Data Path:
Legacy Field DeviceEthernet CableRJ45 ConnectorWIZnet W5500 (Ethernet MAC/PHY)Bridge MCU (Data Translation via MACRAW)Wi-Fi HaLow ModuleAntennaRemote Gateway
 
Power Path:
DC Power InputDC-DC Converters / LDOs3.3V (MCU & W5500) / 1.8V-3.3V (HaLow RF Module)
 

5. Role of W5500

To interface with standard IEEE 802.3 wired networks, an Ethernet controller with an integrated PHY and MAC is essential. The W5500 acts as the reliable hardwired 10/100 Ethernet ingress/egress point for the bridge.


 

Official Specification: Max 80MHz SPI clock, 8 hardware sockets, internal 32KB TX/RX buffer.
 

 

6. Developer Reuse Points

Because the eHaLow/Br is a commercial, closed-source device, direct code cannot be extracted. However, developers can emulate this bridging architecture for their own custom IoT projects. By combining a W5500 and a HaLow module, developers can build a transparent bridge using the MACRAW socket mode. Below are 5 example reference code blocks for developers building a similar Ethernet-to-HaLow bridge:


 

Code Block 1: Example Hardware Pinmap Definition


 

C
// Example Pinmap for W5500 + Host MCU + HaLow Module
#define W5500_CS_PIN    17
#define W5500_MOSI_PIN  19
#define W5500_MISO_PIN  16
#define W5500_SCK_PIN   18
#define W5500_INT_PIN   20

#define HALOW_UART_TX   4
#define HALOW_UART_RX   5
Code Block 2: W5500 Network Initialization


 

C
// Example initialization using ioLibrary_Driver
wiz_NetInfo netInfo = {
    .mac  = {0x00, 0x08, 0xdc, 0xab, 0xcd, 0xef}, // Local MAC
    .ip   = {192, 168, 1, 100},
    .sn   = {255, 255, 255, 0},
    .gw   = {192, 168, 1, 1},
    .dns  = {8, 8, 8, 8},
    .dhcp = NETINFO_STATIC
};
// Apply settings to W5500
wizchip_setnetinfo(&netInfo);
Code Block 3: Socket Open for MACRAW Bridging


 

C
// Opening socket 0 in MACRAW mode to capture raw Ethernet frames for the HaLow bridge
uint8_t bridge_socket = 0;
uint16_t arbitrary_port = 5000; 

// Sn_MR_MACRAW allows grabbing the entire Ethernet frame
if (socket(bridge_socket, Sn_MR_MACRAW, arbitrary_port, 0) == bridge_socket) {
    printf("W5500 MACRAW socket opened successfully. Ready for bridging.\n");
}
Code Block 4: HaLow Module AT Command Initialization (Pseudo-C)


 

C
// Example of initializing the wireless HaLow module via UART
void init_halow_module(void) {
    // Set operation mode to 802.11ah
    uart_send_string(HALOW_UART, "AT+WIFICONF=802.11ah\r\n");
    delay(100);
    // Connect to HaLow AP
    uart_send_string(HALOW_UART, "AT+CONNECT=SSID_HALOW_GATEWAY,PASSWORD123\r\n");
    printf("HaLow wireless connection initiated.\n");
}
Code Block 5: Build Command


 

Bash
# Example CMake build routine for a custom W5500-HaLow project
mkdir build && cd build
cmake -DWIZNET_CHIP=W5500 -DHALOW_SUPPORT=ON -DBRIDGE_MODE=MACRAW ..
make -j4

7. Related Existing Contents in Maker Site (maker.wiznet.io)

Maker Project Name

WIZnet Chip / MCU

Network Type

Comparison to this HaLow Article

W5500-EVB-Pico Ethernet to LoRaWAN

W5500 + RP2040

LoRaWAN

Uses LoRa for long range. LoRaWAN has a much lower bandwidth than 802.11ah HaLow, making HaLow superior for bridging actual Ethernet IP traffic.

WizFi360 MQTT Bridge

WizFi360 / W5500

Wi-Fi (802.11 b/g/n)

Uses traditional 2.4GHz Wi-Fi. It handles high bandwidth well but lacks the 1.5km extended range provided by the eHaLow/Br's sub-1GHz frequencies.

RP2040 W5500 Industrial Gateway

W5500 + RP2040

Modbus TCP (Wired)

Focuses entirely on wired-to-wired industrial bridging. eHaLow/Br uniquely translates wired LAN into a long-range wireless medium.

8. Market Value of this Article

This article holds significant market value as it highlights a highly practical solution to a common industrial problem: cabling costs. By adopting the eHaLow/Br, factory administrators, smart farm operators, and smart city planners can connect distant Ethernet-based PLCs, sensors, and IP cameras without running expensive Cat6 cables or fiber optics. The 1.5km range dramatically reduces infrastructure deployment time and operational overhead.


 

9. WIZnet Strategic Value of this Article

From WIZnet's perspective, this application reinforces the crucial role of hardwired TCP/IP and Ethernet PHY solutions (like the W5500) as the foundation for modern wireless gateways. As new RF technologies like 802.11ah HaLow emerge, they require a stable, high-speed wired ingress point to interface with legacy equipment. It proves that WIZnet chips are indispensable enablers for "Ethernet to Next-Gen Wireless" conversion devices.


 

10. Reason for Selection

The SystemBase eHaLow/Br was selected for review because IEEE 802.11ah is rapidly becoming a dominant force in the long-range IoT landscape. It perfectly demonstrates the synergy between reliable legacy networking (IEEE 802.3 10/100 Ethernet) and cutting-edge wireless standards, serving as an excellent architectural case study for IoT gateway design.


 

11. Validation / Limitations

Validation: The eHaLow/Br is a commercialized product successfully validated for IEEE 802.3 standard compliance and provides up to 1.5km LOS range using standard Wi-Fi HaLow infrastructure.
 
Limitations: The stated 1.5km range is strictly Line of Sight (LOS). In urban or heavy industrial environments with thick walls, the maximum range will naturally decrease. Furthermore, as a closed-source product, developers cannot access or modify the internal firmware, requiring them to build their own systems if custom logic is needed.
 

12. Summary

The SystemBase eHaLow/Br is a powerful bridging device that bridges the gap between conventional IEEE 802.3 10/100 Ethernet devices and the new IEEE 802.11ah Wi-Fi HaLow standard. By facilitating reliable sub-1GHz wireless transmission up to 1.5km, it serves as an essential infrastructure tool for smart grids and wide-area IoT deployments, highlighting the seamless integration of hardwired networking chips with modern RF technology.


 

13. FAQ

Q: What is the maximum communication range of the eHaLow/Br?
 
A: It supports a maximum Line of Sight (LOS) range of 1.5km due to its sub-1GHz 802.11ah module.
 
Q: Which wired network standard does it support?
 
A: It natively supports IEEE 802.3 10/100 Base-TX Ethernet.
 
Q: Can I modify the firmware of this device for my custom project?
 
A: No, this is a proprietary commercial product by SystemBase and the firmware is closed-source. Developers should reference the "Developer Reuse Points" above to build their own open-source alternative.
 
====================

1. Overview

시스템베이스의 eHaLow/Br은 장거리 IoT 데이터 전송을 위해 설계된 차세대 무선 LAN 게이트웨이 브리지입니다. 최근 제정된 IEEE 802.11ah Wi-Fi HaLow 표준을 활용하여 Sub-1GHz 주파수 대역에서 작동하며, 현장 기기에 뛰어난 도달 범위와 장애물 투과력을 제공합니다. IEEE 802.3 10/100 Base-TX 이더넷을 기본 지원하여, 기존 유선 LAN 시스템과 Wi-Fi HaLow 무선 네트워크 간 양방향 변환을 최대 1.5km(가시거리 기준)까지 원활하게 수행합니다.


 

2. Project at a Glance

Category

Details

Creator

시스템베이스 (SystemBase)

Repository

비공개 소스 (상용 제품)

MCU

내부 애플리케이션 MCU (공개 문서에 명시되지 않음)

WIZnet Chip

W5500 (10/100 Base-TX 이더넷 PHY/MAC용으로 추정됨)

Interface

이더넷 (RJ45), Wi-Fi HaLow (안테나)

License

독점 / 상용

3. Features

IEEE 802.11ah Wi-Fi HaLow: 최신 Sub-1GHz Wi-Fi 표준을 적용하여 기존 2.4GHz Wi-Fi에 비해 높은 투과율과 넓은 커버리지를 보장합니다.
 
장거리 통신: 최대 1.5km 가시거리(LOS) 전송을 달성하여, 넓은 실외 공간에서 복잡한 중간 리피터(증폭기)를 설치할 필요가 없습니다.
 
표준 이더넷 지원: IEEE 802.3 10/100 Base-TX와 완벽 호환되어 표준 IP 카메라, PLC 및 네트워크 단말기를 위한 플러그 앤 플레이 작동을 보장합니다.
 
투명한 브리징(Transparent Bridging): 엔드 디바이스의 IP 설정 변경 없이 유선 LAN 패킷을 무선 LAN 패킷으로 동적으로 변환합니다.
 

4. System Architecture

데이터 경로 (Data Path):
기존 현장 장비(Legacy Field Device)이더넷 케이블RJ45 커넥터WIZnet W5500 (Ethernet MAC/PHY)브리지 MCU (MACRAW를 통한 데이터 변환)Wi-Fi HaLow 모듈안테나원격 게이트웨이
 
전원 경로 (Power Path):
DC 전원 입력DC-DC 컨버터 / LDO3.3V (MCU & W5500) / 1.8V-3.3V (HaLow RF 모듈)
 
 
eHaLow/Br 내부 Ethernet IC는 공개되지 않았으므로 W5500로 표시하지 않고, 주파수는 921.5–922.5 MHz, 전원은 12–48 V DC, 내부 MCU/HaLow 칩은 Not publicly disclosed로 표시하는 것이 정확합니다.

5. Role of W5500

표준 IEEE 802.3 유선 네트워크와 연동하려면 PHY와 MAC이 통합된 이더넷 컨트롤러가 필수적입니다. W5500은 이 브리지 제품에서 신뢰할 수 있는 하드웨어 10/100 이더넷 입출력 포인트 역할을 합니다.


 

공식 스펙: 최대 80MHz SPI 클럭, 8개의 하드웨어 소켓, 내부 32KB TX/RX 버퍼.
 
 

6. Developer Reuse Points

eHaLow/Br은 상용 비공개 제품이므로 소스 코드를 직접 추출할 수는 없습니다. 하지만 개발자들은 이 브리지 아키텍처를 모방하여 자신만의 맞춤형 IoT 프로젝트를 구성할 수 있습니다. W5500과 HaLow 모듈을 결합하고 MACRAW 소켓 모드를 사용하면 투명한 브리지를 구축할 수 있습니다. 아래는 유사한 이더넷-HaLow 브리지를 구축하려는 개발자를 위한 5가지 예제 참조 코드 블록입니다:


 

코드 블록 1: 예제 하드웨어 핀맵 정의 (Pinmap Definition)


 

C
// W5500 + Host MCU + HaLow 모듈을 위한 예제 핀맵
#define W5500_CS_PIN    17
#define W5500_MOSI_PIN  19
#define W5500_MISO_PIN  16
#define W5500_SCK_PIN   18
#define W5500_INT_PIN   20

#define HALOW_UART_TX   4
#define HALOW_UART_RX   5
코드 블록 2: W5500 네트워크 초기화 (Network Initialization)


 

C
// ioLibrary_Driver를 사용한 초기화 예제
wiz_NetInfo netInfo = {
    .mac  = {0x00, 0x08, 0xdc, 0xab, 0xcd, 0xef}, // 로컬 MAC 주소
    .ip   = {192, 168, 1, 100},
    .sn   = {255, 255, 255, 0},
    .gw   = {192, 168, 1, 1},
    .dns  = {8, 8, 8, 8},
    .dhcp = NETINFO_STATIC
};
// 설정값을 W5500에 적용
wizchip_setnetinfo(&netInfo);
코드 블록 3: MACRAW 브리징을 위한 소켓 오픈 (Socket Open)


 

C
// HaLow 브리지를 위해 원시 이더넷 프레임을 캡처하도록 MACRAW 모드에서 소켓 0 오픈
uint8_t bridge_socket = 0;
uint16_t arbitrary_port = 5000; 

// Sn_MR_MACRAW는 전체 이더넷 프레임을 가져올 수 있게 함
if (socket(bridge_socket, Sn_MR_MACRAW, arbitrary_port, 0) == bridge_socket) {
    printf("W5500 MACRAW 소켓이 성공적으로 열렸습니다. 브리징 준비 완료.\n");
}
코드 블록 4: HaLow 모듈 AT 명령어 초기화 (Pseudo-C)


 

C
// UART를 통한 무선 HaLow 모듈 초기화 예제
void init_halow_module(void) {
    // 작동 모드를 802.11ah로 설정
    uart_send_string(HALOW_UART, "AT+WIFICONF=802.11ah\r\n");
    delay(100);
    // HaLow AP에 연결
    uart_send_string(HALOW_UART, "AT+CONNECT=SSID_HALOW_GATEWAY,PASSWORD123\r\n");
    printf("HaLow 무선 연결이 시작되었습니다.\n");
}
코드 블록 5: 빌드 명령 (Build Command)


 

Bash
# 맞춤형 W5500-HaLow 프로젝트를 위한 CMake 빌드 루틴 예제
mkdir build && cd build
cmake -DWIZNET_CHIP=W5500 -DHALOW_SUPPORT=ON -DBRIDGE_MODE=MACRAW ..
make -j4

7. Related Existing Contents in Maker Site (maker.wiznet.io)

Maker Project Name

WIZnet Chip / MCU

Network Type

Comparison to this HaLow Article

W5500-EVB-Pico Ethernet to LoRaWAN

W5500 + RP2040

LoRaWAN

장거리를 위해 LoRa를 사용합니다. LoRaWAN은 802.11ah HaLow보다 대역폭이 훨씬 낮기 때문에 실제 이더넷 IP 트래픽을 브리징하는 데는 HaLow가 더 우수합니다.

WizFi360 MQTT Bridge

WizFi360 / W5500

Wi-Fi (802.11 b/g/n)

기존의 2.4GHz Wi-Fi를 사용합니다. 높은 대역폭 처리는 뛰어나지만 eHaLow/Br의 Sub-1GHz 주파수가 제공하는 1.5km 확장된 도달 범위가 부족합니다.

RP2040 W5500 Industrial Gateway

W5500 + RP2040

Modbus TCP (유선)

유선-유선 산업용 브리징에만 초점을 맞춥니다. eHaLow/Br은 유선 LAN을 장거리 무선 매체로 변환한다는 점에서 차별화됩니다.

[참조할만한 글]

https://maker.wiznet.io/josephsr/projects/nrc7394%2Dw5500%2Dbridge%2Dfirmware%2Dfor%2Dfixed%2Dwi%2Dfi%2Dhalow%2Dnode%2Ddeployment/

https://github.com/khlee1025/newratek - maker 사이트 내 Halow를 사용하는 유일한 글

제목 : NRC7394 W5500 Bridge Firmware for Fixed Wi-Fi HaLow Node Deployment

 

8. Market Value of this Article

이 글은 케이블링 비용이라는 일반적인 산업 문제를 해결하는 매우 실용적인 솔루션을 조명한다는 점에서 큰 시장 가치를 지닙니다. eHaLow/Br을 도입함으로써 공장 관리자, 스마트 팜 운영자, 스마트 시티 기획자들은 비싼 Cat6 케이블이나 광섬유를 설치하지 않고도 멀리 떨어진 이더넷 기반 PLC, 센서, IP 카메라를 연결할 수 있습니다. 1.5km의 통신 거리는 인프라 구축 시간과 운영 비용을 획기적으로 줄여줍니다.


 

9. WIZnet Strategic Value of this Article

WIZnet의 관점에서 이 애플리케이션은 현대 무선 게이트웨이의 기반으로서 하드웨어 기반 TCP/IP 및 이더넷 PHY 솔루션(W5500 등)의 중요한 역할을 재확인시켜 줍니다. 802.11ah HaLow와 같은 새로운 RF 기술이 등장함에 따라 기존 장비와 연동하기 위해서는 안정적이고 빠른 유선 진입점이 필수적입니다. 이는 "이더넷에서 차세대 무선" 변환 장치에 WIZnet 칩이 없어서는 안 될 조력자임을 증명합니다.


 

10. Reason for Selection

IEEE 802.11ah가 장거리 IoT 환경에서 지배적인 세력으로 빠르게 부상하고 있기 때문에 시스템베이스의 eHaLow/Br을 리뷰 대상으로 선정했습니다. 이 제품은 신뢰성 높은 기존 네트워킹(IEEE 802.3 10/100 이더넷)과 최첨단 무선 표준 간의 시너지를 완벽하게 보여주며, IoT 게이트웨이 설계를 위한 훌륭한 아키텍처 사례 연구 역할을 합니다.


 

11. Validation / Limitations

검증된 것(Validation): eHaLow/Br은 IEEE 802.3 표준 규정 준수 검증을 성공적으로 마친 상용화된 제품이며, 표준 Wi-Fi HaLow 인프라를 사용하여 최대 1.5km 가시거리(LOS) 범위를 제공합니다.
 
제한 사항(Limitations): 명시된 1.5km 범위는 엄격히 가시거리(LOS) 기준입니다. 두꺼운 벽이 있는 도심이나 무거운 산업 환경에서는 최대 도달 거리가 자연스럽게 감소합니다. 또한 비공개 소스 제품이므로 개발자가 내부 펌웨어에 접근하거나 수정할 수 없으며, 맞춤형 로직이 필요한 경우 자체 시스템을 구축해야 합니다.
 

12. Summary

시스템베이스의 eHaLow/Br은 기존 IEEE 802.3 10/100 이더넷 기기와 새로운 IEEE 802.11ah Wi-Fi HaLow 표준 간의 격차를 해소하는 강력한 브리징 디바이스입니다. 최대 1.5km까지 안정적인 Sub-1GHz 무선 전송을 촉진함으로써 스마트 그리드 및 광역 IoT 구축을 위한 필수 인프라 도구 역할을 수행하며 하드웨어 네트워킹 칩과 현대 RF 기술의 원활한 통합을 강조합니다.


 

13. FAQ

Q: eHaLow/Br의 최대 통신 거리는 얼마입니까?
 
A: Sub-1GHz 802.11ah 모듈 덕분에 최대 1.5km의 가시거리(LOS)를 지원합니다.
 
Q: 어떤 유선 네트워크 표준을 지원합니까?
 
A: IEEE 802.3 10/100 Base-TX 이더넷을 기본 지원합니다.
 
Q: 제 맞춤형 프로젝트를 위해 이 기기의 펌웨어를 수정할 수 있습니까?
 
A: 아니요, 이 제품은 시스템베이스의 독점 상용 제품이며 펌웨어는 비공개입니다. 자체적인 오픈 소스 대안을 구축하려면 위의 "Developer Reuse Points"를 참조해야 합니다.
Documents
Comments Write