From df0c2bfd80e5d0da61b43cdcb79443d797179820 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Sat, 5 Feb 2022 17:33:34 -0500 Subject: [PATCH] remove debug statements --- watch-library/shared/driver/spiflash.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/watch-library/shared/driver/spiflash.c b/watch-library/shared/driver/spiflash.c index 0fb7f437..da6b2630 100644 --- a/watch-library/shared/driver/spiflash.c +++ b/watch-library/shared/driver/spiflash.c @@ -88,9 +88,7 @@ bool spi_flash_write_data(uint32_t address, uint8_t *data, uint32_t data_length) address_to_bytes(address, request + 1); flash_enable(); bool status = watch_spi_write(request, 4); - printf("status? "); if (status) { - printf("status! Writing %d bytes to %02x %02x %02x\n", data_length, request[1], request[2], request[3]); status = watch_spi_write(data, data_length); } flash_disable();