Skip to content

Commit

Permalink
Removed print in get bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Feb 27, 2014
1 parent 11d9c9b commit 19a90f3
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ void SetPICUSBFifo(BYTE_FIFO_STORAGE * s){
if(bufferSet==TRUE)
return;
bufferSet=TRUE;
printBufferState(s);
//printBufferState(s);
usb_fifo_my_store=s;
last_my_store=s;
printBufferState(GetPICUSBFifo());
//printBufferState(GetPICUSBFifo());
setPrintLevel(l);

}
Expand Down Expand Up @@ -227,12 +227,12 @@ int USBPutArray(BYTE* stream, int num){

WORD GetNumUSBBytes(void){
usb_Buffer_Update();
printBufferState(GetPICUSBFifo());
println_I("Update Buffer = ");
//printBufferState(GetPICUSBFifo());
//println_I("Update Buffer = ");
// BYTE_FIFO_STORAGE* fifo = GetPICUSBFifo();

WORD data = FifoGetByteCount(GetPICUSBFifo());
p_int_I(data);
//p_int_I(data);
return data;
}

Expand Down

0 comments on commit 19a90f3

Please sign in to comment.