- Almost no formatting on the ebooks you upload (no bold text, missing glyphs, no images/cover art) - The book had to be rendered before being uploaded. I suspect they were uploading series of bitmaps. - This meant if you wanted to change portrait/landscape or change font size/type you had to re-render the book - Bitmap fonts were very ugly.
Overall it was barely workable. More of a proof of concept. The CrossPoint firmware on the other hand:
- Actually renders books as you would expect, in a pleasing manner, formatting and all - Much more reader configuration on device: font settings, margin, spacing, alignment, progress display - Update via USB or OTA - Multiple ways to get your books: Connect to your Calibre library to push or pull books (thanks for introducing me to Calibre!), USB, Wireless file transfer - Sync progress via KOReader
It's the best gift the community could give to the manufacturer. With only the default firmware my X4 would have been in the junk drawer within a week, but now I carry it every day, I've shown it to so many people. It's a marvel. With the news about them attempting to lock it down I can't recommend it anymore. Why would they do that?
But I read there's also an "X4 v2 pro" coming with frontlight: https://www.joshualowcock.com/xteink/xteink-x4-v2-pro-xteink...
So I'm waiting to see which one will be the best price/quality in this regard.
But it wasn't nearly as good as the front light ones that came later.
Firmware for the Xteink X4 e-paper display reader (unaffiliated with Xteink). Built using PlatformIO and targeting the ESP32-C3 microcontroller.
CrossPoint Reader is a purpose-built firmware designed to be a drop-in, fully open-source replacement for the official Xteink firmware. It aims to match or improve upon the standard EPUB reading experience.

E-paper devices are fantastic for reading, but most commercially available readers are closed systems with limited customisation. The Xteink X4 is an affordable, e-paper device, however the official firmware remains closed. CrossPoint exists partly as a fun side-project and partly to open up the ecosystem and truly unlock the device's potential.
CrossPoint Reader aims to:
This project is not affiliated with Xteink; it's built as a community project.
Multi-language support: Read EPUBs in various languages, including English, Spanish, French, German, Italian, Portuguese, Russian, Ukrainian, Polish, Swedish, Norwegian, and more.
See the user guide for instructions on operating CrossPoint, including the KOReader Sync quick setup.
For more details about the scope of the project, see the SCOPE.md document.
To revert back to the official firmware, you can flash the latest official firmware from https://xteink.dve.al/, or swap back to the other partition using the "Swap boot partition" button here https://xteink.dve.al/debug.
firmware.bin file from the release of your choice via the releases pageTo revert back to the official firmware, you can flash the latest official firmware from https://xteink.dve.al/, or swap back to the other partition using the "Swap boot partition" button here https://xteink.dve.al/debug.
esptool :pip install esptool
firmware.bin file from the release of your choice via the releases pagedmesg after connecting. On MacOS, run :log stream --predicate 'subsystem == "com.apple.iokit"' --info
esptool.py --chip esp32c3 --port /dev/ttyACM0 --baud 921600 write_flash 0x10000 /path/to/firmware.bin
Change /dev/ttyACM0 to the device for your system.
See Development below.
pio) or VS Code + PlatformIO IDECrossPoint uses PlatformIO for building and flashing the firmware. To get started, clone the repository:
git clone --recursive https://github.com/crosspoint-reader/crosspoint-reader
# Or, if you've already cloned without --recursive:
git submodule update --init --recursive
Connect your Xteink X4 to your computer via USB-C and run the following command.
pio run --target upload
After flashing the new features, itβs recommended to capture detailed logs from the serial port.
First, make sure all required Python packages are installed:
python3 -m pip install pyserial colorama matplotlib
after that run the script:
# For Linux
# This was tested on Debian and should work on most Linux systems.
python3 scripts/debugging_monitor.py
# For macOS
python3 scripts/debugging_monitor.py /dev/cu.usbmodem2101
Minor adjustments may be required for Windows.
CrossPoint Reader is pretty aggressive about caching data down to the SD card to minimise RAM usage. The ESP32-C3 only has ~380KB of usable RAM, so we have to be careful. A lot of the decisions made in the design of the firmware were based on this constraint.
The first time chapters of a book are loaded, they are cached to the SD card. Subsequent loads are served from the
cache. This cache directory exists at .crosspoint on the SD card. The structure is as follows:
.crosspoint/
βββ epub_12471232/ # Each EPUB is cached to a subdirectory named `epub_<hash>`
β βββ progress.bin # Stores reading progress (chapter, page, etc.)
β βββ cover.bmp # Book cover image (once generated)
β βββ book.bin # Book metadata (title, author, spine, table of contents, etc.)
β βββ sections/ # All chapter data is stored in the sections subdirectory
β βββ 0.bin # Chapter data (screen count, all text layout info, etc.)
β βββ 1.bin # files are named by their index in the spine
β βββ ...
β
βββ epub_189013891/
Deleting the .crosspoint directory will clear the entire cache.
Due the way it's currently implemented, the cache is not automatically cleared when a book is deleted and moving a book file will use a new cache directory, resetting the reading progress.
For more details on the internal file structures, see the file formats document.
Contributions are very welcome!
If you are new to the codebase, start with the contributing docs.
If you're looking for a way to help out, take a look at the ideas discussion board. If there's something there you'd like to work on, leave a comment so that we can avoid duplicated effort.
Everyone here is a volunteer, so please be respectful and patient. For more details on our governance and community principles, please see GOVERNANCE.md.
feature/dithering-improvement)CrossPoint Reader is not affiliated with Xteink or any manufacturer of the X4 hardware.
Huge shoutout to diy-esp32-epub-reader by atomic14, which was a project I took a lot of inspiration from as I was making CrossPoint.