diff options
author | Nick Foster <nick@nerdnetworks.org> | 2010-08-24 13:36:48 -0700 |
---|---|---|
committer | Nick Foster <nick@nerdnetworks.org> | 2010-08-24 13:36:48 -0700 |
commit | d0815967a27d01059230679e2d635377ac8c18b3 (patch) | |
tree | bc72ca5bc779bbe8a92396286894f1c08146750b /usrp2/top/u2plus | |
parent | e5c97b4a2cdccf0d87c585cf807945e4f58e58a7 (diff) | |
download | uhd-d0815967a27d01059230679e2d635377ac8c18b3.tar.gz uhd-d0815967a27d01059230679e2d635377ac8c18b3.tar.bz2 uhd-d0815967a27d01059230679e2d635377ac8c18b3.zip |
Added a sanity checker Python script.
The script just looks for input/inout/outputs that are declared in the .v but not in the .ucf. If it finds an occurrence, it aborts the compile.
Removed pin "POR" from u2plus.v due to the script. Also reverted an error I introduced to test the script, which I mistakenly committed earlier.
Diffstat (limited to 'usrp2/top/u2plus')
-rwxr-xr-x | usrp2/top/u2plus/u2plus.ucf | 2 | ||||
-rw-r--r-- | usrp2/top/u2plus/u2plus.v | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/top/u2plus/u2plus.ucf b/usrp2/top/u2plus/u2plus.ucf index a9ff9413d..aee9e57bf 100755 --- a/usrp2/top/u2plus/u2plus.ucf +++ b/usrp2/top/u2plus/u2plus.ucf @@ -250,7 +250,7 @@ NET "PHY_INTn" LOC = "L22" ; NET "MDIO" LOC = "K21" ; NET "MDC" LOC = "J23" ; NET "PHY_RESETn" LOC = "J22" ; -NET "ETH_LEd" LOC = "H20" |IOSTANDARD = LVCMOS25 |DRIVE = 12 |SLEW = FAST ; +NET "ETH_LED" LOC = "H20" |IOSTANDARD = LVCMOS25 |DRIVE = 12 |SLEW = FAST ; ## MIMO Interface NET "exp_time_out_p" LOC = "Y14" ; diff --git a/usrp2/top/u2plus/u2plus.v b/usrp2/top/u2plus/u2plus.v index a0ba4d4cc..3641ce962 100644 --- a/usrp2/top/u2plus/u2plus.v +++ b/usrp2/top/u2plus/u2plus.v @@ -83,7 +83,7 @@ module u2plus output PHY_RESETn, output ETH_LED, - input POR, +// input POR, // Expansion input exp_time_in_p, input exp_time_in_n, // Diff |