Damien George
Damien George
I have now finished XSPI 888 DTR mode support. Mboot now uses it by default, and the main application supports both SPI and DTR mode and can auto-detect which mode...
Regarding `memcpy`: this really needs to go in RAM because when reading data from XSPI (eg filesystem read) it uses a `memcpy` to copy the data out of XSPI. So...
> can you enable UART3/4 on the N6? PA11/PA12 and PB10/PB11 OK, now done.
SD card and WiFi are now working!
For deepsleep: I've now made it so the INITSVTORCR code is in MICROPY_BOARD_ENTER_STANDBY. So you can override it. For lwIP: you're right that it doesn't work properly. I set MEM_ALIGNMENT...
> It needs 32 on the N6 I did try with all powers of 2 between 4 and 64. With 4 it couldn't connect to the AP, but with 8...
> I didn't test ping, just a simple scan + connect to AP. For me, scan always works (regardless of mem align). Connect to AP only works with mem align...
> The MicroPython virtual machine is now able to avoid heap-allocating slices when subscripting bytearray and memoryview objects, for example expressions like bytearray_obj[a:b] = c This is only referring to...
I tested this on nucleo_wb55rg, and it breaks the UART REPL on that board: the UART responds only occasionally to input (output is fine though). I'm guessing it's because power...
Thanks for the contribution. But I'm a bit confused, I thought system exclusive messages were a completely different format, namely: - they start with 0xF0 - they have an number...