7
mirror of https://github.com/EEVengers/ThunderScope.git synced 2025-04-08 06:25:30 +00:00

Changed refresh variable name

This commit is contained in:
Aleksa Bjelogrlic 2025-03-27 18:49:00 -04:00
parent 2b4dbd54a7
commit e5365d0c16

View File

@ -17,7 +17,7 @@ def main():
rules_file = "Thunderscope_Rev5.kicad_dru"
vivado_io_csv_file = "impl_1.csv"
refresh = False
refresh_on_save = False
time_modified_old = 0
time_modified_new = 0
@ -31,7 +31,7 @@ def main():
pad_delay_dict = get_pad_delays(vivado_io_csv_file)
if (refresh == False):
if (refresh_on_save == False):
equiv_len_max,per_net_delay_dict = calc_net_delays(kicad,"LVDS_ADC",pad_delay_dict)
print ("Max Equiv Length: " + str(equiv_len_max))
user_write_prompt = input("Write Rules File (y/n): ")