Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Palsson <karlp@tweak.net.au>2018-05-03 02:23:36 +0300
committerKarl Palsson <karlp@tweak.net.au>2018-07-29 23:31:17 +0300
commit72e1ffdc72af4bee79d51bde59d7fb7fb9fd69e5 (patch)
tree5b74b7270e4c050f6513037a048a18064c709c51
parent63e0b6df3af4f5fcb6aea678f124ceca209223b4 (diff)
usb-gadget0: stm32f3: drop debug, be more consistent
Don't spew loop prints, be more like all the other targets.
-rw-r--r--tests/gadget-zero/main-stm32f3-disco.c2
1 files changed, 0 insertions, 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++);
}
}