From 7abc08eeefdd4128ca55bcece97eda9c54a9e5bb Mon Sep 17 00:00:00 2001 From: Uwe Bonnes Date: Fri, 14 Oct 2011 00:06:41 +0200 Subject: [PATCH] Remove some debug output Signed-off-by: Karl Palsson --- src/stlink-usb.c | 2 -- 1 file changed, 2 deletions(-) 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); } -- 2.47.2