-
-
Couldn't load subscription status.
- Fork 563
Description
Is your feature request related to a problem? Please describe.
It seems that (not all) ESP-C3 Supermini Boards are not supported.
Flashing via WebFlasher was not possible: Errormessage: Your type of C3 is not supported.
Describe the solution you'd like
How did I fix it?
I forked it on github and added the following lines in platformio.ini:
custom_ci_action = generic,generic_esp32,generic_esp32s3,generic_esp32s3_usb,esp32c3_supermini
...
[env:esp32c3_supermini]
board = esp32-c3-devkitm-1
build_flags = ${env.build_flags}
-DPIN_MAPPING_REQUIRED=1
The I flashed the new *bin to my ESP-C3
Maybe it's not the best solution since I'm new to this stuff...but right now it works....at least now for 1 hour.
My PINout in *json is:
"nrf24": {
"miso": 5,
"mosi": 6,
"clk": 4,
"irq": 2,
"en": 3,
"cs": 7
}
Describe alternatives you've considered
No response
Additional context
No response