Lora Basic Gateway Module - how to restore factory firmware?

Has anyone managed to restore the factory program for the Lora Basic Gateway Module?
I have downloaded the program and libraries, trying to follow the steps described here (https://www.elecrow.com/pub/wiki/lora-basic-gateway-module.html) but the compilation throws so many errors that the whole process misses the point. I'm using Arduino IDE version 2.3.3.
Perhaps there is a firmware image somewhere ready to upload?

Tagged:

Comments

  • Here's how it can be done, maybe it will help someone....
    Open Windows Terminal.

    pip install esptool
    esptool --chip esp32 --port COM17 --baud 460800 write_flash 0x1000 ESP-sc-gway-0526.ino.bootloader.bin 0x8000 ESP-sc-gway-0526.ino.partitions.bin 0xe000 boot_app0.bin 0x10000 ESP-sc-gway-0526.ino.bin

    Replace COM17 with the correct serial port for your ESP32.
    Ensure that the .bin files are in the current directory or provide their full paths.

Sign In or Register to comment.