Closed iabdalkader closed 11 months ago
See #103 for a fix to the first issue.
Thanks! I pulled that PR locally and tested, can confirm the debug build compile time issue is fixed, and WiFi is still functional.
I pulled that PR locally and tested, can confirm the debug build compile time issue is fixed, and WiFi is still functional.
Thanks for testing.
The alignment issue should be fixed by #105.
Fixed.
I finally had a chance to test this, and everything seems to be working great. The debug build works as expected.. Thanks @dpgeorge for the excellent support!
Specifically on MicroPython's
mimxrt
port, when building withDEBUG=1
at compile time the build fails becausestorage_read_blocks
is not defined. I have to let the compiler optimize this function out by doing thisAnd at runtime, debug builds assert because of the NVRAM overflow issue (which I tried to fix in #74 and was not merged) so I have to patch the files locally again to comment the asserts:
It's just not practical to keep those local changes in every micropython fork I'm working on, or to add them every time I need to debug something, so can you please fix the debug builds somehow ?