File: signal_processing_p.vhd

package info (click to toggle)
bladerf 0.2017.12~rc1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 14,620 kB
  • sloc: ansic: 50,123; vhdl: 12,873; python: 1,062; tcl: 1,060; xml: 1,017; makefile: 657; sh: 589; csh: 18; cpp: 9
file content (16 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
library ieee;
    use ieee.std_logic_1164.all;
    use ieee.numeric_std.all;

package signal_processing_p is

    type real_array_t is array (natural range <>) of real;

end package signal_processing_p;


package body signal_processing_p is



end package body;