Skip to content

Commit

Permalink
Update to v0.27
Browse files Browse the repository at this point in the history
  • Loading branch information
keirf committed May 12, 2021
1 parent 9846c54 commit 7477393
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

export FW_MAJOR := 0
export FW_MINOR := 26
export FW_MINOR := 27

TARGETS := all blinky clean dist windist mrproper f1_ocd ocd flash start serial pysetup
.PHONY: $(TARGETS)
Expand Down Expand Up @@ -43,12 +43,12 @@ dist:
mkdir -p $(PROJ)-$(VER)/scripts/greaseweazle/image
mkdir -p $(PROJ)-$(VER)/scripts/greaseweazle/tools
mkdir -p $(PROJ)-$(VER)/scripts/misc
mkdir -p $(PROJ)-$(VER)/alt
mkdir -p $(PROJ)-$(VER)/hex/alt
$(MAKE) clean
$(MAKE) mcu=stm32f1 all blinky
cp -a $(PROJ)-$(VER).hex $(PROJ)-$(VER)/$(PROJ)-F1-$(VER).hex
cp -a $(PROJ)-$(VER).hex $(PROJ)-$(VER)/hex/$(PROJ)-F1-$(VER).hex
cp -a $(PROJ)-$(VER).upd $(PROJ)-$(VER)/$(PROJ)-$(VER).upd
cp -a blinky_test/Blinky.hex $(PROJ)-$(VER)/alt/Blinky_Test-$(VER).hex
cp -a blinky_test/Blinky.hex $(PROJ)-$(VER)/hex/alt/Blinky_Test-F1-$(VER).hex
cp -a COPYING $(PROJ)-$(VER)/
cp -a README.md $(PROJ)-$(VER)/
cp -a gw $(PROJ)-$(VER)/
Expand All @@ -61,12 +61,12 @@ dist:
cp -a RELEASE_NOTES $(PROJ)-$(VER)/
$(MAKE) clean
$(MAKE) mcu=stm32f7 all
cp -a $(PROJ)-$(VER).hex $(PROJ)-$(VER)/$(PROJ)-F7-$(VER).hex
cp -a $(PROJ)-$(VER).hex $(PROJ)-$(VER)/hex/$(PROJ)-F7-$(VER).hex
$(PYTHON) ./scripts/mk_update.py cat $(PROJ)-$(VER)/$(PROJ)-$(VER).upd \
$(PROJ)-$(VER)/$(PROJ)-$(VER).upd $(PROJ)-$(VER).upd
$(MAKE) clean
$(MAKE) mcu=at32f4 all
cp -a $(PROJ)-$(VER).hex $(PROJ)-$(VER)/$(PROJ)-AT32F4-$(VER).hex
cp -a $(PROJ)-$(VER).hex $(PROJ)-$(VER)/hex/$(PROJ)-AT32F4-$(VER).hex
$(PYTHON) ./scripts/mk_update.py cat $(PROJ)-$(VER)/$(PROJ)-$(VER).upd \
$(PROJ)-$(VER)/$(PROJ)-$(VER).upd $(PROJ)-$(VER).upd
$(MAKE) clean
Expand Down
8 changes: 8 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
** Keir Fraser <[email protected]>
************************************

** v0.27 - 12 May 2021
- EDSK: Support writing KBI-19 protection tracks
- EDSK: Support next IDAM in preceding sector's GAP
- gw seek: New option --motor-on to enable drive motor while seeking
- New firmware command: CMD_GET_PIN to interrogate input floppy pins
- New board type: V4 (using AT32F4xx MCUs)
- New board type: F1 Plus (enhanced BP adapter board by Monideth Pen)

** v0.26 - 26 March 2021
- Support new Greaseweazle model: F7 v3 "Thunderbolt"
- EDSK: Support for writing many protected EDSK files
Expand Down

0 comments on commit 7477393

Please sign in to comment.