From 5302fd205f313a12e46fe567d60bbcf2ac456d35 Mon Sep 17 00:00:00 2001 From: Jesse Cirimelli-Low Date: Tue, 30 Oct 2018 23:03:05 -0700 Subject: [PATCH] fixed some final typos in datasheet --- compiler/datasheet/datasheet_gen.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/compiler/datasheet/datasheet_gen.py b/compiler/datasheet/datasheet_gen.py index 318d345f..0b63fbae 100644 --- a/compiler/datasheet/datasheet_gen.py +++ b/compiler/datasheet/datasheet_gen.py @@ -119,28 +119,28 @@ def parse_characterizer_csv(f,pages): pass for item in sheet.timing: - if item.paramter == "CSb setup rising": + if item.parameter == "CSb setup rising": if float(FF_SETUP_LH_MIN) < float(item.min): item.min = FF_SETUP_LH_MIN elif float(FF_SETUP_LH_MAX) > float(item.max): item.max = FF_SETUP_LH_MAX - if item.paramter == "CSb setup falling": + if item.parameter == "CSb setup falling": if float(FF_SETUP_HL_MIN) < float(item.min): item.min = FF_SETUP_HL_MIN - elif float(FF_SETUP_HL_MAX) > float(item.nax): + elif float(FF_SETUP_HL_MAX) > float(item.max): item.max = FF_SETUP_HL_MAX - if item.paramter == "CSb hold rising": + if item.parameter == "CSb hold rising": if float(FF_HOLD_HL_MIN) < float(item.min): item.min = FF_SETUP_HL_MIN - elif float(FF_HOLD_HL_MAX) > float(item.nax): + elif float(FF_HOLD_HL_MAX) > float(item.max): item.max = FF_SETUP_HL_MAX - if item.paramter == "CSb hold falling": + if item.parameter == "CSb hold falling": if float(FF_HOLD_HL_MIN) < float(item.min): item.min = FF_SETUP_HL_MIN - elif float(FF_HOLD_HL_MAX) > float(item.nax): + elif float(FF_HOLD_HL_MAX) > float(item.max): item.max = FF_SETUP_HL_MAX