diff options
| author | uvok | 2025-12-24 17:50:22 +0100 |
|---|---|---|
| committer | uvok | 2025-12-24 17:50:22 +0100 |
| commit | 27997642dbe82b43ce85338f88cae1bb7f030750 (patch) | |
| tree | 79a6aeab36e31a1b0daa66f3e61032897e721abf | |
| parent | 177e51dce83dc9c94947fbfa3a0035cc0c4c856f (diff) | |
Don't write to persistant flash
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,6 +3,7 @@ MAKEFLAGS += --no-builtin-variables .SUFFIXES: PROGRAM ?= led +FLASH_OPTS ?= all: $(PROGRAM).fs @@ -29,8 +30,9 @@ tangnano9k.cst: %.fs: %.pnr.json gowin_pack -d GW1N-9C -o $@ $< +# flash: -f flash: led.fs - openFPGALoader -b tangnano9k -f led.fs + openFPGALoader -b tangnano9k $(FLASH_OPTS) led.fs clean: rm -rf *.json *.fs *.svg *.log |
