Skip to content

Commit

Permalink
Update for v2.8a
Browse files Browse the repository at this point in the history
  • Loading branch information
keirf committed May 10, 2019
1 parent dd893f7 commit 63aaa14
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

export FW_VER := 2.7a
export FW_VER := 2.8a

PROJ := FlashFloppy
VER := v$(FW_VER)
Expand Down Expand Up @@ -79,12 +79,13 @@ all:
endif

BAUD=115200
DEV=/dev/ttyUSB0

flash:
sudo stm32flash -b $(BAUD) -w FF_Gotek-$(VER).hex /dev/ttyUSB0
sudo stm32flash -b $(BAUD) -w FF_Gotek-$(VER).hex $(DEV)

start:
sudo stm32flash -b $(BAUD) -g 0 /dev/ttyUSB0
sudo stm32flash -b $(BAUD) -g 0 $(DEV)

serial:
sudo miniterm.py /dev/ttyUSB0 3000000
sudo miniterm.py $(DEV) 3000000
5 changes: 5 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
** Keir Fraser <keir.xen@gmail.com>
************************************

** v2.8a - 10 May 2019
- DSK, IMG: Fix small error in generated MFM data
- Increase write buffer to 32kB, enough for a full high-density track
- More reliable whole-track writes, especially to HFE images

** v2.7a - 23 April 2019
- Sort folders into alphabetical order during direct navigation
- FF.CFG: folder-sort= to modify this new default behaviour
Expand Down

0 comments on commit 63aaa14

Please sign in to comment.