changeset 67:dcac5f08f87a

Don't complain about CRC mismatch in flashreadblock.
author Daniel O'Connor <darius@dons.net.au>
date Sun, 14 Apr 2013 14:29:08 +0930
parents 0916bfe3f418
children cc998b0b2bae
files flash.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/flash.c	Sun Apr 14 14:28:14 2013 +0930
+++ b/flash.c	Sun Apr 14 14:29:08 2013 +0930
@@ -362,7 +362,7 @@
    CRC_ResetDR();
    ramcrc = CRC_CalcBlockCRC((uint32_t *)_data, len / 4);
 
-   printf("RAM CRC 0x%08x Flash CRC 0x%08x\r\n", (uint)ramcrc, (uint)flashcrc);
+   /* printf("RAM CRC 0x%08x Flash CRC 0x%08x\r\n", (uint)ramcrc, (uint)flashcrc); */
    
    if (ramcrc == flashcrc)
        return 1;