Commit ec1cf5e8 authored by Jesus Fernandez's avatar Jesus Fernandez

Corrected inverted PPS output due to hardware error

parent 677e7ae8
......@@ -247,6 +247,7 @@ architecture Behavioral of scb_top_synthesis is
signal pllout_clk_fb : std_logic;
--signal pllout_dmtd_clk_fb : std_logic;
signal clk_dmtd_125 : std_logic;
signal pps_out : std_logic;
attribute maxskew: string;
attribute maxskew of clk_dmtd : signal is "1.0ns";
......@@ -825,7 +826,7 @@ begin
cpu_irq_n_o => cpu_irq_n_o,
pps_i => pps_i,
ppsin_term_o => ppsin_term_o,
pps_o => pps_o,
pps_o => pps_out,
dac_helper_sync_n_o => dac_helper_sync_n_o,
dac_helper_sclk_o => dac_helper_sclk_o,
dac_helper_data_o => dac_helper_data_o,
......@@ -866,6 +867,9 @@ begin
mb_fan2_pwm_o => mb_fan2_pwm_o,
spll_dbg_o => open);
--Reverse PPS to correct hardware mishap in physical latch
pps_o <= not pps_out;
i2c_scl_in(1 downto 0) <= mbl_scl_b(1 downto 0);
i2c_sda_in(1 downto 0) <= mbl_sda_b(1 downto 0);
......
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