From 56978cde58b1d8b5d3becc692ca2b4d72094b2b8 Mon Sep 17 00:00:00 2001 From: Simon Schubert <2@0x2c.org> Date: Mon, 10 Jun 2019 11:47:31 +0200 Subject: add RGB_DRV/LED_DRV_CUR for u4k --- icefuzz/extract.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'icefuzz/extract.py') diff --git a/icefuzz/extract.py b/icefuzz/extract.py index 32bf289..75a65fa 100644 --- a/icefuzz/extract.py +++ b/icefuzz/extract.py @@ -41,7 +41,7 @@ for filename in sys.argv[1:]: cur_text_db = text_db.setdefault("ipcon_5k", set()) ignore = False elif device_class == "u4k" and line.startswith("IpCon"): - cur_text_db = text_db.setdefault("ipcon_u4k", set()) + cur_text_db = text_db.setdefault("ipcon_5k", set()) ignore = False elif device_class == "5k" and line.startswith("DSP"): match = re.match(r"DSP_Tile_\d+_(\d+)", line) @@ -71,7 +71,7 @@ for filename in sys.argv[1:]: if ypos in [8, 16]: dsp_idx = 3 assert dsp_idx != None - cur_text_db = text_db.setdefault("dsp%d_u4k" % dsp_idx, set()) + cur_text_db = text_db.setdefault("dsp%d_5k" % dsp_idx, set()) ignore = False elif not ignore: print("'" + line + "'") -- cgit v1.2.3