File tree 3 files changed +32
-4
lines changed
3 files changed +32
-4
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,10 @@ For the TinyFPGA BX module, you need to set `BOARD=bx` flag:
60
60
61
61
make flash V=blinky_bx.v BOARD=bx
62
62
63
+ Same for the IceBreaker module:
64
+
65
+ make flash V=blinky_icebreaker.v BOARD=icebreaker
66
+
63
67
(Append ` USE_SUDO=1 ` if you need to use sudo).
64
68
65
69
The build process has the following steps:
@@ -74,13 +78,15 @@ The build process has the following steps:
74
78
75
79
## Pins
76
80
77
- You can find the available pins in [ pcf/icestick.pcf] ( https://github.com/pwmarcz/fpga-tools/blob/master/pcf/icestick.pcf ) and
78
- [ pcf/bx.pcf] ( https://github.com/pwmarcz/fpga-tools/blob/master/pcf/bx.pcf ) files. Your module will reference these.
81
+ You can find the available pins in
82
+ [ fpga-tools/pcf] ( https://github.com/pwmarcz/fpga-tools/tree/master/pcf ) directory. Your module
83
+ will need to reference these.
79
84
80
85
Here are the pinouts for reference:
81
86
82
87
- [ iCEstick pinout] ( http://www.pighixxx.net/portfolio-items/icestick/ )
83
88
- [ TinyFPGA BX pinout] ( https://www.crowdsupply.com/tinyfpga/tinyfpga-bx/updates/manufacturing-continues )
89
+ - [ IceBreaker pinout] ( https://raw.githubusercontent.com/icebreaker-fpga/icebreaker/master/img/icebreaker-v1_0b-legend.jpg )
84
90
85
91
## Ideas
86
92
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ title: FPGA tutorial
3
3
---
4
4
5
5
Here are some materials for my FPGA workshop. The workshop uses the open source
6
- Icestorm toolchain. The hardware is Icestick and TinyFPGA boards because that's
7
- what I have, as well as some peripherals like OLED displays.
6
+ Icestorm toolchain. The hardware is a few Lattice boards ( because that's what I
7
+ have) , as well as some peripherals like OLED displays.
8
8
9
9
The code is MIT licensed (see LICENSE) unless otherwise stated in the
10
10
file. Patches welcome!
Original file line number Diff line number Diff line change
1
+
2
+ module top (input wire CLK,
3
+ output wire LED1,
4
+ output wire LED2,
5
+ output wire LED3,
6
+ output wire LED4,
7
+ output wire LED5);
8
+
9
+ parameter n = 26 ;
10
+ reg [n- 1 :0 ] clk_counter = 0 ;
11
+
12
+ always @(posedge CLK) begin
13
+ clk_counter <= clk_counter + 1 ;
14
+ end
15
+
16
+ // Display 5 highest bits of counter with LEDs.
17
+ assign LED1 = clk_counter[n- 5 ];
18
+ assign LED2 = clk_counter[n- 4 ];
19
+ assign LED3 = clk_counter[n- 3 ];
20
+ assign LED4 = clk_counter[n- 2 ];
21
+ assign LED5 = clk_counter[n- 1 ];
22
+ endmodule
You can’t perform that action at this time.
0 commit comments