Commit 5fbb521e authored by Marek Gumiński's avatar Marek Gumiński

Fixed pullup/pulldown logic on ext_sync buffer.

Changed ext_sync termination_en pin (previously used by ext_sync_test).
Error messages fixed in test06.
parent a0789c4a
......@@ -105,11 +105,11 @@ begin
-- during normal operation direction should be the same
-- but for PTS directions are controlled separately
ext_sync_io <= ext_sync_out_val when ext_sync_iodir = '1' else 'Z';
ext_sync_dir_o <= ext_sync_dir;
ext_sync_dir_o <= '1' when ext_sync_dir = '1' else 'Z';
-- since external line oe_n is active low and wbregs default value is zero
-- register is called oe and its value is negated here
ext_sync_oe_n_o <= '0' when ext_sync_oe = '1' else 'Z';
ext_sync_oe_n_o <= '1' when ext_sync_oe = '0' else 'Z';
......
......@@ -225,7 +225,7 @@ NET "speed_b0_i" IOSTANDARD = "LVCMOS25";
NET "speed_b1_i" LOC = AB5;
NET "speed_b1_i" IOSTANDARD = "LVCMOS25";
NET "ext_sync_term_en_o" LOC = AB13;
NET "ext_sync_term_en_o" LOC = U8;
NET "ext_sync_term_en_o" IOSTANDARD = "LVCMOS25";
NET "ext_sync_io" LOC = T8;
......
......@@ -320,9 +320,9 @@ class Suite(object):
log.write(msg)
log.close()
adc_data_files=get_files("/tmp","mfdata*")
adc_read_script=os.path.abspath("../python/read_samples.py")
ziplist = ziplist + adc_data_files + [ adc_read_script ]
# adc_data_files=get_files("/tmp","mfdata*")
# adc_read_script=os.path.abspath("../python/read_samples.py")
# ziplist = ziplist + adc_data_files + [ adc_read_script ]
make_zip(zipfilename, ziplist)
......
......@@ -176,7 +176,7 @@ def test_oen( dut, box ):
result['Output enable'] = 1
util.info_msg("Value read from disabled buffer didn't change no matter buffer input")
else :
util.info_err_msg("Value read from buffer changed, although output should be disabled")
util.err_msg("Value read from buffer changed, although output should be disabled")
result['Output enable'] = 0
return result
......@@ -243,7 +243,7 @@ def test_dir( dut, box ):
util.info_msg("Value read from buffer set to output didn't change no matter buffer input")
else :
result['Direction selection'] = 0
util.info_err_msg("Value read from buffer changed, although buffer should be set to output")
util.err_msg("Value read from buffer changed, although buffer should be set to output")
return result
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment