From 0b4c714e0de601474d07ac1afd1d7ab230e013bf Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Fri, 22 Feb 2019 13:28:52 -0800 Subject: [PATCH] CPLD tool: Remove commented code. --- firmware/tools/cpld_crc.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/firmware/tools/cpld_crc.py b/firmware/tools/cpld_crc.py index a678351c..96ff2045 100755 --- a/firmware/tools/cpld_crc.py +++ b/firmware/tools/cpld_crc.py @@ -49,12 +49,10 @@ for command in commands: if tdi_length == 7 and end_state == 1: address = int(command['tdi']['data'].hex(), 16) data[-1].append([address]) - # print('address: %02x' % address) elif tdi_length == 274 and end_state == 0: mask = int(command['tdo_mask']['data'].hex(), 16) expected = int(command['tdo_expected']['data'].hex(), 16) data[-1][-1].extend([expected, mask]) - # print('mask:%x tdo:%x' % (mask, expected)) ####################################################################### # Check that extracted data conforms to expectations.