Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Commits
f6dac749
Commit
f6dac749
authored
10 years ago
by
Daniel van der Schuur
Browse files
Options
Downloads
Patches
Plain Diff
-Removed unb1_correlator.vhd from this library.
parent
161d86d2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/dsp/correlator/hdllib.cfg
+0
-1
0 additions, 1 deletion
libraries/dsp/correlator/hdllib.cfg
libraries/dsp/correlator/src/vhdl/unb1_correlator.vhd
+0
-90
0 additions, 90 deletions
libraries/dsp/correlator/src/vhdl/unb1_correlator.vhd
with
0 additions
and
91 deletions
libraries/dsp/correlator/hdllib.cfg
+
0
−
1
View file @
f6dac749
...
...
@@ -14,7 +14,6 @@ synth_files =
$SVN/RadioHDL/trunk/libraries/dsp/correlator/src/vhdl/corr_adder.vhd
$SVN/RadioHDL/trunk/libraries/dsp/correlator/src/vhdl/corr_accumulator.vhd
$SVN/RadioHDL/trunk/libraries/dsp/correlator/src/vhdl/correlator.vhd
$SVN/RadioHDL/trunk/libraries/dsp/correlator/src/vhdl/unb1_correlator.vhd
test_bench_files
=
$SVN/RadioHDL/trunk/libraries/dsp/correlator/tb/vhdl/tb_corr_carousel.vhd
...
...
This diff is collapsed.
Click to expand it.
libraries/dsp/correlator/src/vhdl/unb1_correlator.vhd
deleted
100644 → 0
+
0
−
90
View file @
161d86d2
-------------------------------------------------------------------------------
--
-- Copyright (C) 2014
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- JIVE (Joint Institute for VLBI in Europe) <http://www.jive.nl/>
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-------------------------------------------------------------------------------
-- Purpose:
-- . Feed subband data to correlator and buffer visibilities for verification.
-- Description:
-- . Block generators are used to emulate subband data. The visibilities
-- produced by the correlator are captured in data buffers.
LIBRARY
IEEE
;
USE
IEEE
.
STD_LOGIC_1164
.
ALL
;
ENTITY
unb1_correlator
IS
GENERIC
(
g_stamp_date
:
NATURAL
:
=
0
;
-- Date (YYYYMMDD)
g_stamp_time
:
NATURAL
:
=
0
;
-- Time (HHMMSS)
g_stamp_svn
:
NATURAL
:
=
0
-- SVN revision
);
PORT
(
-- GENERAL
CLK
:
IN
STD_LOGIC
;
-- System Clock
PPS
:
IN
STD_LOGIC
;
-- System Sync
WDI
:
OUT
STD_LOGIC
;
-- Watchdog Clear
-- Others
-- VERSION : IN STD_LOGIC_VECTOR(c_unb_aux.version_w-1 DOWNTO 0);
-- ID : IN STD_LOGIC_VECTOR(c_unb_aux.id_w-1 DOWNTO 0);
-- TESTIO : INOUT STD_LOGIC_VECTOR(c_unb_aux.testio_w-1 DOWNTO 0);
-- I2C Interface to Sensors
sens_sc
:
INOUT
STD_LOGIC
;
sens_sd
:
INOUT
STD_LOGIC
;
-- 1GbE Control Interface
ETH_clk
:
IN
STD_LOGIC
;
ETH_SGIN
:
IN
STD_LOGIC
;
ETH_SGOUT
:
OUT
STD_LOGIC
);
END
unb1_correlator
;
ARCHITECTURE
str
OF
unb1_correlator
IS
BEGIN
-----------------------------------------------------------------------------
-- Block generators
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
-- Correlator
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
-- Data buffers
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
-- MM master
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
-- UniBoard 1 control
-----------------------------------------------------------------------------
END
str
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment