File: signal_processing_p.vhd

package info (click to toggle)
bladerf 0.2016.06-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 13,624 kB
  • sloc: ansic: 44,880; vhdl: 11,945; python: 1,062; xml: 1,028; tcl: 952; makefile: 654; sh: 537; 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;