Page 1 of 1

dspi.cpp question about printing SizeLeft

Posted: Fri Feb 20, 2015 8:34 am
by seulater
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);

Re: dspi.cpp question about printing SizeLeft

Posted: Fri Feb 20, 2015 9:02 am
by rnixon
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

Posted: Fri Feb 20, 2015 9:03 am
by seulater
2.7.0, I just created a ticket for them about it.