Installation
Duet releases contain a separate firmware file for each reader:
Duet-X3-v<version>.binfor the Xteink X3Duet-X4-v<version>.binfor the Xteink X4
Do not flash the X3 file onto an X4 or the X4 file onto an X3. Back up the entire SD card before the first alpha installation. Preserve /.duet, /.crossink, /.crosspoint, /.crossink-stats-backup, /fonts, /dictionaries, and your book folders during every upgrade.
Web Installer
Use this route for the first Duet installation or recovery:
- Download the correct
Duet-X3-...binorDuet-X4-...binfrom the official Duet releases. - Connect your Xteink X4 or X3 to your computer via USB-C and wake/unlock the device.
- Go to https://crosspointreader.com/#flash-tools and choose your device.
- Select Custom .bin from the options.
- Choose the Duet
.binfile you downloaded and click Flash.
To revert back to the official firmware, flash the latest official firmware from https://crosspointreader.com/#flash-tools.
SD Card Upgrade
Once Duet is installed:
- Keep a copy of the currently working BIN as a rollback file.
- Put exactly one new Duet firmware BIN at the SD card root.
- On the reader, open Settings > System > SD Firmware Update.
- Confirm the device name and version, then let the reader restart.
- Verify Settings > System shows the expected Duet version before removing the rollback copy from your computer.
Command Line
These instructions are for macOS and Linux. Windows users should use the web installer.
Install esptool:
pip3 install esptool
Download the correct Duet BIN from the official releases, then connect your device with USB-C.
Find the device port:
# Linux
dmesg | grep tty
# macOS
ls /dev/cu.*
Flash the firmware:
# Linux
esptool.py --chip esp32c3 --port /dev/ttyACM0 --baud 921600 write_flash 0x10000 /path/to/firmware.bin
# macOS
esptool.py --chip esp32c3 --port /dev/cu.usbmodem2101 --baud 921600 write_flash 0x10000 /path/to/firmware.bin
Replace the port and firmware path with your actual values.
Alpha Recovery
If the reader boot-loops, cannot open books, or cannot sleep after an update, remove the SD card and boot once. If the problem continues, flash the last known-good BIN through the web installer. Do not delete the SD card’s hidden state folders while diagnosing; they contain progress, settings, statistics, bookmarks, and caches that can help recover both the data and the cause.