Skip to content

Commit 19a90f3

Browse files
committed
Removed print in get bytes
1 parent 11d9c9b commit 19a90f3

File tree

1 file changed

+5
-5
lines changed
  • firmware/library/NR-Clib/development/Platform/src/pic32/usb

1 file changed

+5
-5
lines changed

firmware/library/NR-Clib/development/Platform/src/pic32/usb/usb_fifo.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ void SetPICUSBFifo(BYTE_FIFO_STORAGE * s){
7777
if(bufferSet==TRUE)
7878
return;
7979
bufferSet=TRUE;
80-
printBufferState(s);
80+
//printBufferState(s);
8181
usb_fifo_my_store=s;
8282
last_my_store=s;
83-
printBufferState(GetPICUSBFifo());
83+
//printBufferState(GetPICUSBFifo());
8484
setPrintLevel(l);
8585

8686
}
@@ -227,12 +227,12 @@ int USBPutArray(BYTE* stream, int num){
227227

228228
WORD GetNumUSBBytes(void){
229229
usb_Buffer_Update();
230-
printBufferState(GetPICUSBFifo());
231-
println_I("Update Buffer = ");
230+
//printBufferState(GetPICUSBFifo());
231+
//println_I("Update Buffer = ");
232232
// BYTE_FIFO_STORAGE* fifo = GetPICUSBFifo();
233233

234234
WORD data = FifoGetByteCount(GetPICUSBFifo());
235-
p_int_I(data);
235+
//p_int_I(data);
236236
return data;
237237
}
238238

0 commit comments

Comments
 (0)