Index: dialin/dg/calibration_record.py =================================================================== diff -u -r5eb006b08eb1d7b641b22fff20072ab7b685cfec -rcc6dc0f17386f6967a26681dc9952afe7c18884a --- dialin/dg/calibration_record.py (.../calibration_record.py) (revision 5eb006b08eb1d7b641b22fff20072ab7b685cfec) +++ dialin/dg/calibration_record.py (.../calibration_record.py) (revision cc6dc0f17386f6967a26681dc9952afe7c18884a) @@ -384,7 +384,7 @@ hardware_names = ['fpga_board', 'load_cell_a1_b1', 'load_cell_a2_b2', 'thdo_rtd', 'tdi_rtd', 'internal_cond', 'onboard_ntc', 'power_supply_1', 'power_supply_2', 'outlet_redundant', 'inlet_dialysate', 'inlet_primary_heater', 'outlet_primary_heater', 'cond_sensor_1', 'cond_sensor_2', - 'reserved_1', 'reserved_2', 'reserved_3', 'reserved_4', 'reserved_5'] + 'heat_disinfect', 'thd_rdt', 'barometric_temp', 'reserved_4', 'reserved_5'] group_byte_size = 0 group_name = 'temperature_sensors' hardware_group = OrderedDict({group_name: OrderedDict()}) Index: tests/peter/set_RTCs.py =================================================================== diff -u -r5eb006b08eb1d7b641b22fff20072ab7b685cfec -rcc6dc0f17386f6967a26681dc9952afe7c18884a --- tests/peter/set_RTCs.py (.../set_RTCs.py) (revision 5eb006b08eb1d7b641b22fff20072ab7b685cfec) +++ tests/peter/set_RTCs.py (.../set_RTCs.py) (revision cc6dc0f17386f6967a26681dc9952afe7c18884a) @@ -30,16 +30,16 @@ current_time = localtime(current_time_stamp) print(current_time) - if hd.cmd_log_in_to_hd(): - hd.rtc.cmd_set_rtc_time_and_date(current_time.tm_sec, - current_time.tm_min, - current_time.tm_hour, - current_time.tm_mday, - current_time.tm_mon, - current_time.tm_year) - print("Successfully set HD rtc") + #if hd.cmd_log_in_to_hd(): + # hd.rtc.cmd_set_rtc_time_and_date(current_time.tm_sec, + # current_time.tm_min, + # current_time.tm_hour, + # current_time.tm_mday, + # current_time.tm_mon, + # current_time.tm_year) + # print("Successfully set HD rtc") - """ + if dg.cmd_log_in_to_dg(): dg.rtc.cmd_set_rtc_time_and_date(current_time.tm_sec, current_time.tm_min, @@ -48,5 +48,5 @@ current_time.tm_mon, current_time.tm_year) print("Successfully set DG rtc") - """ +