Skip to content

Commit 7f0efb7

Browse files
committed
Update seed and builder image version
1 parent 1e8a162 commit 7f0efb7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Check and build
17-
run: docker run --rm -v ${PWD}:/module bitcraze/fpga-builder:2 tools/build/build
17+
run: docker run --rm -v ${PWD}:/module bitcraze/fpga-builder:3 tools/build/build

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PROJ = lighthouse
22

3-
VERSION ?=
3+
VERSION ?= 6
44

55
PIN_DEF = lighthouse4_revB.pcf
66
DEVICE = up5k
@@ -17,7 +17,7 @@ $(PROJ).json: LighthouseTopLevel.v
1717
yosys -p 'read_verilog LighthouseTopLevel.v; read_verilog blackboxes.v; synth_ice40 -top LighthouseTopLevel; write_json $@'
1818

1919
%.asc: %.json $(PIN_DEF)
20-
nextpnr-ice40 --seed 0 --up5k --package sg48 --json $< --asc $@ --pcf $(PIN_DEF)
20+
nextpnr-ice40 --seed 16 --up5k --package sg48 --json $< --asc $@ --pcf $(PIN_DEF) --freq 24
2121
python3 tools/update_bitstream_comment.py $@ "$(VERSION)"
2222

2323
%.bin: %.asc

0 commit comments

Comments
 (0)