[Armadeus-commitlog] SF.net SVN: armadeus:[1158] trunk/firmware
Brought to you by:
sszy
|
From: <Fa...@us...> - 2009-03-13 09:18:08
|
Revision: 1158
http://armadeus.svn.sourceforge.net/armadeus/?rev=1158&view=rev
Author: FabM
Date: 2009-03-13 09:17:55 +0000 (Fri, 13 Mar 2009)
Log Message:
-----------
[FIRMWARE] Updating all firmwares examples, with bitstream for apf27 and apf9328
Modified Paths:
--------------
trunk/firmware/leds/blinking_led/src/led_blink.vhd
trunk/firmware/leds/button_led/led_top.dia
Added Paths:
-----------
trunk/firmware/leds/blinking_led/bin/
trunk/firmware/leds/blinking_led/bin/blinking_led_apf27_200k.bit
trunk/firmware/leds/blinking_led/bin/blinking_led_apf9328_200k.bit
trunk/firmware/leds/blinking_led/src/led_blink_27.ucf
trunk/firmware/leds/blinking_led/src/led_blink_9328.ucf
trunk/firmware/leds/button_led/bin/
trunk/firmware/leds/button_led/bin/button_led_apf27-200k.bit
trunk/firmware/leds/button_led/bin/button_led_apf9328-200k.bit
trunk/firmware/leds/button_led/led_apf27.ucf
trunk/firmware/wishbone_example/bin/wishbone_example_apf27_200k.bit
trunk/firmware/wishbone_example/bin/wishbone_example_apf9328_200k.bit
Removed Paths:
-------------
trunk/firmware/leds/blinking_led/blinking_led_xc3s200.bit
trunk/firmware/leds/blinking_led/blinking_led_xc3s400.bit
trunk/firmware/leds/blinking_led/src/led_blink.ucf
trunk/firmware/wishbone_example/bin/wishbone_example_xc3s200.bit
trunk/firmware/wishbone_example/bin/wishbone_example_xc3s200a.bit
trunk/firmware/wishbone_example/bin/wishbone_example_xc3s400.bit
trunk/firmware/wishbone_example/bin/wishbone_example_xc3s400a.bit
Added: trunk/firmware/leds/blinking_led/bin/blinking_led_apf27_200k.bit
===================================================================
(Binary files differ)
Property changes on: trunk/firmware/leds/blinking_led/bin/blinking_led_apf27_200k.bit
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/firmware/leds/blinking_led/bin/blinking_led_apf9328_200k.bit
===================================================================
(Binary files differ)
Property changes on: trunk/firmware/leds/blinking_led/bin/blinking_led_apf9328_200k.bit
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Deleted: trunk/firmware/leds/blinking_led/blinking_led_xc3s200.bit
===================================================================
(Binary files differ)
Deleted: trunk/firmware/leds/blinking_led/blinking_led_xc3s400.bit
===================================================================
(Binary files differ)
Deleted: trunk/firmware/leds/blinking_led/src/led_blink.ucf
===================================================================
--- trunk/firmware/leds/blinking_led/src/led_blink.ucf 2009-03-12 18:20:04 UTC (rev 1157)
+++ trunk/firmware/leds/blinking_led/src/led_blink.ucf 2009-03-13 09:17:55 UTC (rev 1158)
@@ -1,7 +0,0 @@
-# Clock at 96MHz
-NET "Clk" LOC = "P55";
-NET "Clk" TNM_NET = "Clk";
-TIMESPEC "TS_Clk" = PERIOD "Clk" 10 ns HIGH 50 %;
-# LED
-NET "led_cathode" LOC = "P118"| IOSTANDARD = LVCMOS33 ;
-NET "led_anode" LOC = "P116"| IOSTANDARD = LVCMOS33 ;
Modified: trunk/firmware/leds/blinking_led/src/led_blink.vhd
===================================================================
--- trunk/firmware/leds/blinking_led/src/led_blink.vhd 2009-03-12 18:20:04 UTC (rev 1157)
+++ trunk/firmware/leds/blinking_led/src/led_blink.vhd 2009-03-13 09:17:55 UTC (rev 1158)
@@ -23,6 +23,7 @@
architecture RTL of Clk_div_led is
constant max_count : natural := 48000000;
+-- constant max_count : natural := 10000;
signal Rst_n : std_logic;
begin
@@ -35,7 +36,7 @@
begin
if Rst_n = '0' then
count := 0;
- led_anode <= '1';
+ led_anode <= '0';
elsif rising_edge(Clk) then
if count < max_count/2 then
led_anode <='1';
@@ -50,3 +51,4 @@
end if;
end process compteur;
end RTL;
+
Added: trunk/firmware/leds/blinking_led/src/led_blink_27.ucf
===================================================================
--- trunk/firmware/leds/blinking_led/src/led_blink_27.ucf (rev 0)
+++ trunk/firmware/leds/blinking_led/src/led_blink_27.ucf 2009-03-13 09:17:55 UTC (rev 1158)
@@ -0,0 +1,9 @@
+# Clock at 96MHz
+NET "Clk" LOC = "N9"; # CLK0
+NET "Clk" TNM_NET = "Clk";
+TIMESPEC "TS_Clk" = PERIOD "Clk" 10 ns HIGH 50 %;
+# LED
+#NET "led_cathode" LOC = "C15"| IOSTANDARD = LVCMOS33 ; #IO_L24N_1
+#NET "led_anode" LOC = "D16"| IOSTANDARD = LVCMOS33 ; #IO_L22P_1
+NET "led_cathode" LOC = "C15"| IOSTANDARD = LVCMOS33 ; #IO_L24N_1
+NET "led_anode" LOC = "C16"| IOSTANDARD = LVCMOS33 ; #IO_L24P_1
Copied: trunk/firmware/leds/blinking_led/src/led_blink_9328.ucf (from rev 1116, trunk/firmware/leds/blinking_led/src/led_blink.ucf)
===================================================================
--- trunk/firmware/leds/blinking_led/src/led_blink_9328.ucf (rev 0)
+++ trunk/firmware/leds/blinking_led/src/led_blink_9328.ucf 2009-03-13 09:17:55 UTC (rev 1158)
@@ -0,0 +1,7 @@
+# Clock at 96MHz
+NET "Clk" LOC = "P55";
+NET "Clk" TNM_NET = "Clk";
+TIMESPEC "TS_Clk" = PERIOD "Clk" 10 ns HIGH 50 %;
+# LED
+NET "led_cathode" LOC = "P118"| IOSTANDARD = LVCMOS33 ;
+NET "led_anode" LOC = "P116"| IOSTANDARD = LVCMOS33 ;
Added: trunk/firmware/leds/button_led/bin/button_led_apf27-200k.bit
===================================================================
(Binary files differ)
Property changes on: trunk/firmware/leds/button_led/bin/button_led_apf27-200k.bit
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/firmware/leds/button_led/bin/button_led_apf9328-200k.bit
===================================================================
(Binary files differ)
Property changes on: trunk/firmware/leds/button_led/bin/button_led_apf9328-200k.bit
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/firmware/leds/button_led/led_apf27.ucf
===================================================================
--- trunk/firmware/leds/button_led/led_apf27.ucf (rev 0)
+++ trunk/firmware/leds/button_led/led_apf27.ucf 2009-03-13 09:17:55 UTC (rev 1158)
@@ -0,0 +1,4 @@
+# pinout
+NET "clk" LOC = "N9" | DRIVE=12 |IOSTANDARD = LVCMOS33 ; #CLK0
+NET "led" LOC = "C16" | DRIVE=12 |IOSTANDARD = LVCMOS33 ; #IO_L24P_1
+NET "button" LOC = "C15" | DRIVE=12 | IOSTANDARD = LVCMOS33 ; #IO_L24N_1
Modified: trunk/firmware/leds/button_led/led_top.dia
===================================================================
(Binary files differ)
Copied: trunk/firmware/wishbone_example/bin/wishbone_example_apf27_200k.bit (from rev 1157, trunk/firmware/wishbone_example/bin/wishbone_example_xc3s200a.bit)
===================================================================
(Binary files differ)
Copied: trunk/firmware/wishbone_example/bin/wishbone_example_apf9328_200k.bit (from rev 1157, trunk/firmware/wishbone_example/bin/wishbone_example_xc3s200.bit)
===================================================================
(Binary files differ)
Deleted: trunk/firmware/wishbone_example/bin/wishbone_example_xc3s200.bit
===================================================================
(Binary files differ)
Deleted: trunk/firmware/wishbone_example/bin/wishbone_example_xc3s200a.bit
===================================================================
(Binary files differ)
Deleted: trunk/firmware/wishbone_example/bin/wishbone_example_xc3s400.bit
===================================================================
(Binary files differ)
Deleted: trunk/firmware/wishbone_example/bin/wishbone_example_xc3s400a.bit
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|