Skip to content

Commit 8ba916d

Browse files
committed
IceBreaker support
1 parent 7897cb5 commit 8ba916d

File tree

3 files changed

+32
-4
lines changed

3 files changed

+32
-4
lines changed

docs/fpga.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ For the TinyFPGA BX module, you need to set `BOARD=bx` flag:
6060

6161
make flash V=blinky_bx.v BOARD=bx
6262

63+
Same for the IceBreaker module:
64+
65+
make flash V=blinky_icebreaker.v BOARD=icebreaker
66+
6367
(Append `USE_SUDO=1` if you need to use sudo).
6468

6569
The build process has the following steps:
@@ -74,13 +78,15 @@ The build process has the following steps:
7478

7579
## Pins
7680

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.
7984

8085
Here are the pinouts for reference:
8186

8287
- [iCEstick pinout](http://www.pighixxx.net/portfolio-items/icestick/)
8388
- [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)
8490

8591
## Ideas
8692

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: FPGA tutorial
33
---
44

55
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.
88

99
The code is MIT licensed (see LICENSE) unless otherwise stated in the
1010
file. Patches welcome!

verilog/blinky_icebreaker.v

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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

0 commit comments

Comments
 (0)