Skip to content
Snippets Groups Projects
Commit 60524b17 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Corrected c_bs_sync_timeout, to avoid NATURAL overflow.

parent ebbac460
Branches
No related tags found
1 merge request!173Use c_sdp_S_pn = 12 and c_sdp_N_sync_jesd = 4 for JESD data and syncb lines in...
......@@ -120,7 +120,7 @@ ARCHITECTURE str OF node_sdp_adc_input_and_timing IS
SIGNAL trigger_wg : STD_LOGIC;
-- Frame parameters
CONSTANT c_bs_sync_timeout : NATURAL := (g_bsn_nof_clk_per_sync * 11) / 10; -- +10% margin
CONSTANT c_bs_sync_timeout : NATURAL := g_bsn_nof_clk_per_sync + g_bsn_nof_clk_per_sync / 10; -- +10% margin
CONSTANT c_bs_bsn_w : NATURAL := 64; -- > 51;
CONSTANT c_bs_block_size : NATURAL := c_sdp_N_fft; -- =1024;
CONSTANT c_dp_fifo_dc_size : NATURAL := 64;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment