Linux Flashing Utility for FireBeetle ESP32-C6
Hello!
Is there any Linux utility (officially supported by DF Robot, of course) that will flash MicroPython firmware to FireBeetle ESP32-C6? AppImage would be best but anything for Debian/Ubuntu would work also.
Ideally, I would like to flash MicroPython from a popular Single Board Computer. Thanks.
Regards.
P.S.
The utility linked in the introductory tutorial at https://wiki.dfrobot.com/SKU_DFR1075_FireBeetle_2_Board_ESP32_C6#target_5 is for platforms that support the operation of exe files. I do not have access to such a platform.
您只需要“esptool.py”……但目前在 C6 上安装 MicroPython 会比较棘手!
我使用了这里的非官方二进制文件:https://github.com/mancausoft/micropython/releases/ @@# 擦除闪存@$ esptool.py -p [SERIAL PORT] --chip auto eras_flash @@# flash micropython
$ esptool.py -p [SERIAL PORT] --chip auto write_flash 0x0 [BINARY]
As far as I know, DFRobot does not provide an official Linux utility specifically for flashing MicroPython firmware to the FireBeetle ESP32-C6. However, you can use the widely supported esptool.py utility,
lia.ifat