I have an app that uses the Wi-Fi in AP mode, and the uSD on the MOD5441x module.
When I point my browser to the board, and select a file from the uSD card UART0 Spills out a ton of "SizeLeft: xxxx" lines.
I found this in dspi.cpp and they are 2 spots (line 1014 & 1052) where it has the following.
iprintf("SizeLeft: %ld\n", driverCxt[m_moduleNum].DSPI_SizeLeft);
Should this be instead:
DBPRINT_DSPI("SizeLeft: %ld\n", driverCxt[m_moduleNum].DSPI_SizeLeft);
dspi.cpp question about printing SizeLeft
Re: dspi.cpp question about printing SizeLeft
Sounds like someone forgot to take debug code out. I would guess your correct. They will probably need to know your tools revision.
Re: dspi.cpp question about printing SizeLeft
2.7.0, I just created a ticket for them about it.