| title | Installation |
|---|---|
| nav_order | 2 |
- Xteink X3, X4
- Seeed Studio Sticky
- Navigate to https://inky.crossink.dev/#flash-tools and select your device model.
- The latest version will be automatically selected, but if you ever want to revert to an earlier build, you can select it from the dropdown.
- Choose the firmware option you want to install.
- Click on the "Flash Firmware" button
- Follow the same steps from the Web Installation method above. There will be an option to download the firmware instead of USB flashing.
- Place the downloaded
firmware-*.binfile on your SD card. You can place this file anywhere. - Go to
Settings > System > SD Card Firmware Updateand navigate to the.binfile and update.
If your device has USB data transfer disabled:
- Navigate to https://inky.crossink.dev/#flash-tools and check the box for "I have a locked device" at the top.
- The latest version will be automatically selected, but if you ever want to revert to an earlier build, you can select it from the dropdown.
- Choose the firmware option you want to download.
- Click on the "Download update.bin" button and follow the instructions.
These instructions are for macOS and Linux. Windows users should use the web installer.
Install esptool:
pip3 install esptoolDownload the firmware-*.bin file from the releases page, 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.binReplace the port and firmware path with your actual values.