dspi.cpp question about printing SizeLeft

Discussion to talk about software related topics only.
Post Reply
seulater
Posts: 445
Joined: Fri Apr 25, 2008 5:26 am

dspi.cpp question about printing SizeLeft

Post 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);
rnixon
Posts: 833
Joined: Thu Apr 24, 2008 3:59 pm

Re: dspi.cpp question about printing SizeLeft

Post 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.
seulater
Posts: 445
Joined: Fri Apr 25, 2008 5:26 am

Re: dspi.cpp question about printing SizeLeft

Post by seulater »

2.7.0, I just created a ticket for them about it.
Post Reply