Skip to content

RS232 Quickstart Guide

mozzwald edited this page Sep 2, 2025 · 12 revisions

Table of Contents

Overview

FujiNet RS232 currently targets MS-DOS (PC Compatible) systems over a serial port. Support for other serial devices will likely come in the future.

Hardware

The RS232 hardware is different than previous FujiNets in that it uses the new ESP32-S3 chipset instead of the usual (older) ESP32. This newer silicon is similar in function to the original ESP32 with some beneficial upgrades.

Software

Driver

A DOS driver is required to use FujiNet which can be found in the fujinet-rs232 repository Releases. Download the fujinet.sys driver and copy it to your systems boot disk/drive. Add a new line to your CONFIG.SYS to load the driver:

DEVICE=FUJINET.SYS FUJI_BPS=115200 FUJI_PORT=1

FUJI_PORT defaults to 1 but can be changed to the number of the corresponding serial port FujiNet is connected to (ie, 2 or 3). FUJI_BPS can be changed to the highest baud rate compatible for your machine. The default is 115200 and must be set in both CONFIG.SYS as shown above and in FujiNet's fnconfig.ini file as shown below:

[RS232]
baud=115200

Apps

Some FujiNet enabled apps are available in the same fujinet-rs232 respository in source code form. These can be built with the Open Watcom compiler or precompiled versions are available on apps.irata.online tnfs server.

Connecting to Wifi

As of September 1, 2025 the CONFIG app (mounted by default when FujiNet starts) does not work completely and thus you cannot setup wifi or mount disks from the Host computer. Until CONFIG is working, you can manually edit the fnconfig.ini file on SD card with your wifi credentials to get the FujiNet connected.

Once connected, point your browser to fujinet.local or the IP address acquired by the FujiNet and you will be presented with a web interface for mounting disks.

Clone this wiki locally