Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
lerwys committed Oct 3, 2018
2 parents 63d91b5 + 349c211 commit e0a2f39
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,13 @@ work/
*.xpr
*.edif
*.mif
.Xil/
.Xil/

######################
# Impact files
######################

*impact.xsl
*impact_impact.xwbt
*usage_statistics_webtalk.html
*webtalk_impact.xml
15 changes: 14 additions & 1 deletion hdl/top/afc_v3/vivado/dbe_bpm_gen/dbe_bpm_gen.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -706,8 +706,9 @@ architecture rtl of dbe_bpm_gen is
constant c_acq_monit_amp_id : natural := 16;
constant c_acq_monit_pos_id : natural := 17;
constant c_trigger_sw_clk_id : natural := 18;
constant c_phase_sync_trigger_id : natural := 19;

constant c_trig_num_channels : natural := 1;
constant c_trig_num_channels : natural := 2;
-- Number of channels per acquisition core
constant c_acq_num_channels : natural := 18; -- ADC + ADC SWAP + MIXER + TBT AMP + TBT POS +
-- FOFB AMP + FOFB POS + MONIT AMP + MONIT POS + MONIT1 AMP +
Expand Down Expand Up @@ -2995,6 +2996,12 @@ begin
-----------------------------
rffe_swclk_o => dsp1_clk_rffe_swap,

-----------------------------
-- Synchronization trigger for RFFE swap clock
-----------------------------

sync_trig_i => trig_pulse_rcv(c_trig_mux_0_id, c_phase_sync_trigger_id).pulse,

-----------------------------
-- Debug signals
-----------------------------
Expand Down Expand Up @@ -3213,6 +3220,12 @@ begin
-----------------------------
rffe_swclk_o => dsp2_clk_rffe_swap,

-----------------------------
-- Synchronization trigger for RFFE swap clock
-----------------------------

sync_trig_i => trig_pulse_rcv(c_trig_mux_1_id, c_phase_sync_trigger_id).pulse,

-----------------------------
-- Debug signals
-----------------------------
Expand Down

0 comments on commit e0a2f39

Please sign in to comment.