1
0
mirror of https://github.com/raphnet/gc_n64_usb-v3 synced 2024-12-22 07:18:52 -05:00

Remove debug output from usb.c

This commit is contained in:
Raphael Assenat 2015-09-09 22:32:00 -04:00
parent 49a33c5b06
commit b03e20d7cf

8
usb.c
View File

@ -33,7 +33,7 @@ static void initControlWrite(const struct usb_request *rq)
memcpy(&control_write_rq, rq, sizeof(struct usb_request)); memcpy(&control_write_rq, rq, sizeof(struct usb_request));
control_write_len = 0; control_write_len = 0;
control_write_in_progress = 1; control_write_in_progress = 1;
printf_P(PSTR("Init cw\r\n")); // printf_P(PSTR("Init cw\r\n"));
} }
static int wcslen(const wchar_t *str) static int wcslen(const wchar_t *str)
@ -334,11 +334,11 @@ static void handleSetupPacket(struct usb_request *rq)
// TODO : Without the delays those two printf add, it // TODO : Without the delays those two printf add, it
// does not work. A handshake is missing. // does not work. A handshake is missing.
printf_P(PSTR("t: %02x, rq: 0x%02x, val: %04x, l: %d\r\n"), rq->bmRequestType, rq->bRequest, rq->wValue, rq->wLength); // printf_P(PSTR("t: %02x, rq: 0x%02x, val: %04x, l: %d\r\n"), rq->bmRequestType, rq->bRequest, rq->wValue, rq->wLength);
while(1) while(1)
{ {
printf_P(PSTR("pos %d todo %d\r\n"), pos, todo); // printf_P(PSTR("pos %d todo %d\r\n"), pos, todo);
if (todo > 64) { if (todo > 64) {
buf2EP(0, reportdesc+pos, 64, buf2EP(0, reportdesc+pos, 64,
64, 64,
@ -346,11 +346,13 @@ static void handleSetupPacket(struct usb_request *rq)
UEINTX &= ~(1<<TXINI); UEINTX &= ~(1<<TXINI);
pos += 64; pos += 64;
todo -= 64; todo -= 64;
while (!(UEINTX & (1<<TXINI)));
} else { } else {
buf2EP(0, reportdesc+pos, todo, buf2EP(0, reportdesc+pos, todo,
todo, todo,
g_params->flags & USB_PARAM_FLAG_REPORTDESC_PROGMEM); g_params->flags & USB_PARAM_FLAG_REPORTDESC_PROGMEM);
UEINTX &= ~(1<<TXINI); UEINTX &= ~(1<<TXINI);
while (!(UEINTX & (1<<TXINI)));
break; break;
} }
} }