From 72e1ffdc72af4bee79d51bde59d7fb7fb9fd69e5 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Wed, 2 May 2018 23:23:36 +0000 Subject: [PATCH] usb-gadget0: stm32f3: drop debug, be more consistent Don't spew loop prints, be more like all the other targets. --- tests/gadget-zero/main-stm32f3-disco.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/gadget-zero/main-stm32f3-disco.c b/tests/gadget-zero/main-stm32f3-disco.c index 53970b9f..de5bfccf 100644 --- a/tests/gadget-zero/main-stm32f3-disco.c +++ b/tests/gadget-zero/main-stm32f3-disco.c @@ -84,9 +84,7 @@ int main(void) gpio_clear(GPIOE, GPIO12); static int i = 0; while (1) { - gpio_toggle(GPIOE, GPIO12); gadget0_run(usbd_dev); - ER_DPRINTF("loop %d\n", i++); } }