-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
micropython/espflash: A minimal ESP32 bootloader protocol implementation. #555
Conversation
No I agree it definitely belongs to
Yes, that's the plan once this settled and merged will update the manifest, name might change. |
9b0a4d6
to
c8f8446
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not really keen on the "m" prefix -- we don't do that anywhere else in micropython-lib. "u" would at least be consistent, but I'd rather give it a different name (espboot, espflash, etc).
I'll get around to processing all the comments later today, but |
Other tools (see eg |
Where would that optional library be ? in |
5da3fa8
to
ad6d040
Compare
ad6d040
to
9cb1b34
Compare
@dpgeorge Actually I realized I don't need to implement any of that serial passthrough stuff, because I could If python espflash-cmd.py -f ~/path/to//NINA_W102-v1.5.0-Nano-RP2040-Connect.bin It will also generate the file MD5 hash, and pass it to the script. |
ec4f431
to
2674d83
Compare
That sounds much better! I see you use subprocess to run I see you intend to run |
Yes that works and it's much easier, but I have
Yes it's not part of the package, I just wanted to share the code. I have no idea where to host it, I can remove it from the PR and try to publish it to pypi if it makes sense. |
2674d83
to
bbda777
Compare
…tation. This tool implements a subset of the ESP32 ROM bootloader protocol, and it's mainly intended for updating Nina WiFi firmware from MicroPython, but can be used to flash any ESP32 chip.
bbda777
to
a6d8d91
Compare
I think I fixed all the pending issues, anything else I missed ? I squashed all commits, renamed to |
Thanks for updating, this looks good now. Rebased and merged in 82f6b18 |
@iabdalkader coming along that path again: Where do I find the actual NINA firmware, you mentioned NINA_W102-v1.5.0-Nano-RP2040-Connect.bin? |
@robert-hh You can find it here, starting from 1.5.0 the binaries are attached to releases: |
Thanks. I looked at https://github.com/arduino/nina-fw and did not spot it, just up to 1.4.8. |
Yes
It builds with IDF-5 just fine.
As far as I know yes, the host must run the BT/Networking stacks. |
Thank you for your swift reply. The firmware build fine here as well. Just a few more questions:
|
Like I said, we only patched the pinout to match the C33, and no the host must have mbedtls too. |
I started to write a complaint about esp_hosted_hal_init() etc. assuming that a SPI declaration is done by device number only, but then I noticed that you declared it as MP_WEAK, allowing to have port-specific versions of these functions. That's convenient. |
Below is a modified version of NINA's combine.py for creating a single file with the esp-hosted firmware, that can be uplaoded with your espflash.py utility. That's for ESP32. For other other ESP32 variants that offsets may differ. #!/usr/bin/env python
import sys;
booloaderData = open("build/bootloader/bootloader.bin", "rb").read()
partitionData = open("build/partition_table/partition-table.bin", "rb").read()
otaData = open("build/ota_data_initial.bin", "rb").read()
network_adapterData = open("build/network_adapter.bin", "rb").read()
# calculate the output binary size, app offset
outputSize = 0x10000 + len(network_adapterData)
if (outputSize % 1024):
outputSize += 1024 - (outputSize % 1024)
# allocate and init to 0xff
outputData = bytearray(b'\xff') * outputSize
# copy data: bootloader, partitions, app
for i in range(0, len(booloaderData)):
outputData[0x1000 + i] = booloaderData[i]
for i in range(0, len(partitionData)):
outputData[0x8000 + i] = partitionData[i]
for i in range(0, len(otaData)):
outputData[0xd000 + i] = otaData[i]
for i in range(0, len(network_adapterData)):
outputData[0x10000 + i] = network_adapterData[i]
outputFilename = "esp_hosted.bin"
if (len(sys.argv) > 1):
outputFilename = sys.argv[1]
# write out
with open(outputFilename,"w+b") as f:
f.seek(0)
f.write(outputData) |
I#m a little bit lost again with the ESP32 SDK. |
You can find the patches here along with all the other binaries, and it seems there's already a combine.py script: https://github.com/arduino/ArduinoCore-renesas/tree/main/libraries/WiFi/extra |
Thanks. I try to adapt this driver to the Adafruit airlift and NINA W102 hardware. So many of the pin setting have to be changed. Did you make your changes to these files, or did you use the patches as they are in this link to modify the espressif esp_hosted files. It seems that the sdkconfig.default at your link is the sdkconfig after a build has been made of esp_hosted driver. b.t.w.: Does our PR for the Renesas port require to upload a different firmware to the C33 board, or is the proper firmware already installed/provided by Arduino? What I also did not find are things like Another difficulty: the NINA/Adafruit port uses GPIO33 for the handshake. The esp_hosted code uses direct port access to set & clear the pins by creating a bit mask in the form The whole approach would fit well for the MIMXRT port, since it makes use of LWIP. Then WiFi can coexist with Ethernet. It does not fit for the SAMD port, since including LWIP will increase the code by another ~100k, and that's too much for most SAMD51 ports. It might work for BT only. Edit: Found the settings in |
So it compiles now, only for the MIMXRT1010 MCU it's hardly feasible. The RAM use is increased by ~30k, leaving only 32k for the heap. That's not good. It could work with MIMXRT1020 and up, like Teensy 4.x. They have much more RAM, and LWIP is already included. |
No those are Arduino's patches for the pins, and yes seems they only patch BT pins. The patched firmware is provided in the link, but it also ships with any C33 (firmware is preinstalled at the factory).
I have a PR to add networking/bluetooth support for mimxrt (lwip/nimble/cyw43). |
That's a very good solution, but limited to a single board, as far as I could tell. And the extension HW seems not to b readily available. Using esp_hosted or NINA fw one can use Adafruit add-on boards with the MIMXRT EVK or Teensy 4.x boards. |
I'm not saying it's better, just saying that some of the work required is already done here: |
Yes, I know. But, as said, there seem to be no easily available and usable breakout board for the CYW43, opposed to ESP32 boards or modules. |
There is a subtle hiccup in esp_hosted_hal.c and the way, the symbols like MICROPY_HW_WIFI_DATAREADY are use. The actual code assumes, that these are constants. In the actual MIMXRT port, they are defined e.g. as a function call, like |
Some progress with a MIMXRT1020 EVK board. That board has wired LAN too, but I cannot run them both at the same time. The esphosted variant connects and supports basic operations. Still slow and not overly reliable. Ping success rate is low and slow. Ping IN is fine, Ping out success rate is about 50%. The test adapter is a Arduino shaped hat with a generic ESP32 handwired to the pins of the hat. That way I hav access to all pins and can load firmware using the ESP32's USB port. |
Yes I noticed UDP performance is bad, the udp unittests always fails, I have no idea why, might be something to tune in IDF config, otherwise everything else seems okay.
I know, it seems to be a bug in the firmware it just sends a buffer full of zeros, but it's harmless. |
I have a simple udp echo test with a small server on a RPi in my LAN. That test works fine, albeit slow. |
Attached is a copy of the |
Now I started to get BLE running with the ESP hosted firmware. The Arduino patches you linked were helpful, but there was more to be configured, especially telling the ESP hosted firmware to use UART instead of SPI. The complication with the Adafruit modules is, that they have UART at pins 1 and 3, which is as well used a log port of the esp_hosted firmware. But BLE overrides that, and so it seems to work now. Baud rate switching and test is t.b.d. I do not know whether in in the esp_hosted firmware both WiFi and Bluetooth is active at the same time. Otherwise the SPI pins could be used for UART. Maybe using SPI for communication is an option. b.t.w.: I see that the Copyright notice for the RA port's mpbthciport.c file is now Arduino SA, while a previous version for the RP2 port shows your name, even if these two files are mostly the same. And all are in the essential logic similar to the initial version made by Damien and more similar to the version I tailored for SAMD. So I think it's not fair to omit Damien or you in the notice. |
If you remove the license and weak/empty functions, |
Test coverage looks much better than for the NINA fw:
about (C): I have a version of mpbthciport.c adapted for SAMD, which looks almost identical to the renesas version, besides the way the UART is configured. For that version I kept your name in the copyright notice. I cannot recall from which port it was, but cannot be the Renesas one, and the rp2 one is different as well. Maybe a mix of all. |
Most likely from the
No I just work full-time for Arduino now. |
Kind of. The rp2 port uses the Pico alarm mechanism for timing, while the SAMD one uses SoftTimer like the STM32. So it's more likely an evolution of both. |
With all the forth & back, the (C) note of Damien disappeared again. And keeping it is not only a matter of respect. Reading the Copyright note it seems clear to me that even if you modify code and add your own code to it, the initial Copyright notice must be retained. And because it's hard to write code for MicroPython which does not contain code designed by Damien, I keep him in every file. |
Which file are you referring to ? Please comment on the PR/file you think is missing a License. I added Damien to all of the BT files copyright notices. |
I thought I had looked at mpbthciport.c. Looking again, Damien is indeed mentioned. Thank you. On a completely different topic: |
I still can't test anything right now, I will be back next week, but I'm not too concerned about performance at the moment, I only want to get something stable merged then anyone is welcome to improve it. |
No problem. The Portenta C33 port has to be merged first as the baseline. I do not know whether the C33 UART support an idle event like the STM32 or MIMXRT. The rp2 and SAMD do not. |
@robert-hh maybe you meant the Although I did write it all, including |
Maybe it was this one. It looks as well pretty similar to the mpbthciport.c file of the stm32 port. Anyhow it's hard to write code for MicroPython without using code and designs made by Damien. |
This is a minimal implementation of the ESP32 ROM bootloader protocol, which allows a board running MicroPython to flash a firmware image to an ESP32 chip. This is not a port of
esptool.py
because a) It's too complex b) It's GPL, and it's not implemented as a serial pass-through (from esptool.py <-> mcu <-> ESP32) either, because it would still require installing esptool first and running the serial pass-through code. Note this is for ESP32 not ESP32_S/C (although it may still work, because it talks to the ROM bootloader not a stub) and while it's mainly for updating the Nina WiFi firmware, I chose to implement it in Python (vs ioctls) because it makes easier to extend and use for other ESP chips if needed. Example usage, updating the Nina WiFi module firmware, copy firmware binary to storage (with mpremote or MSC) and:Fixes micropython/micropython#8896
Example output: