From: Uwe Bonnes Date: Thu, 13 Oct 2011 22:06:41 +0000 (+0200) Subject: Remove some debug output X-Git-Url: https://git.gag.com/?p=fw%2Fstlink;a=commitdiff_plain;h=7abc08eeefdd4128ca55bcece97eda9c54a9e5bb Remove some debug output Signed-off-by: Karl Palsson --- diff --git a/src/stlink-usb.c b/src/stlink-usb.c index b417d41..7bcff82 100644 --- a/src/stlink-usb.c +++ b/src/stlink-usb.c @@ -186,7 +186,6 @@ void _stlink_usb_write_mem32(stlink_t *sl, uint32_t addr, uint16_t len) { assert(len < sizeof(sl->q_buf)); // makes a compiler warning? always true? #endif assert((len & 3) == 0); - stlink_print_data(sl); send_only(slu, buf, len); } @@ -206,7 +205,6 @@ void _stlink_usb_write_mem8(stlink_t *sl, uint32_t addr, uint16_t len) { #if Q_BUF_LEN < UINT16_MAX assert(len < sizeof(sl->q_buf)); // makes a compiler warning? always true? #endif - stlink_print_data(sl); send_only(slu, buf, len); }