dspi.cpp question about printing SizeLeft
Posted: Fri Feb 20, 2015 8:34 am
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);
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);