RELEASE_NOTES 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ************************************
  2. ** Greaseweazle Release Notes
  3. ** Keir Fraser <keir.xen@gmail.com>
  4. ************************************
  5. ** v0.7 - 6 December 2019
  6. - USB: Fix end-of-stream detection on track writes
  7. - Writes of empty/unformatted tracks sometimes hung forever
  8. - No Flux Area: Firmware automatically masters long NFAs during track writes
  9. - Generating no flux transitions does not read back as a NFA
  10. - STM32F73xx: Initial support for new STM32 MCU
  11. - Two HEX files are included: Use Greaseweazle-F1-* for existing boards!
  12. - Single unified UPD file containing both firmware images
  13. ** v0.6 - 15 November 2019
  14. - gw.py: Big overhaul of underlying Python package
  15. - Action (read, write, update) must come first on the command line
  16. - eg. "python3 gw.py read --ecyl=39 foo.scp COM3"
  17. - gw.py: New action "delays" to print/set delay parameters
  18. - eg. "python3 gw.py delays --step=10000" to increase step time to 10ms
  19. ** v0.5 - 11 November 2019
  20. - USB: Overhaul the protocol and allow writes to be terminated at index
  21. - Terminate-at-index is always used by current Python control script
  22. - Terminate-at-index prevents an over-long write from overwriting itself
  23. - Fix interruption of track writes (eg. KeyboardInterrupt)
  24. - gw.py: New option --adjust-speed to normalise flux times for target drive
  25. - Measures RPM of the target drive and calculates an adjustment factor
  26. ** v0.4 - 5 November 2019
  27. - Blinky: Diagnostic test firmware to detect fake STM32 chips
  28. - https://github.com/keirf/Greaseweazle/wiki/STM32-Fakes
  29. - Floppy Write: Fix for very short flux timings
  30. - Floppy Read: Fix for very long flux timings
  31. - USB: Small improvement to double-buffer logic
  32. ** v0.3 - 30 October 2019
  33. - Bootloader: Fix Programming-Jumper detection
  34. - Read Track: Various minor fixes
  35. - SCP: Fix the SCP file headers generated by "gw.py read"
  36. ** IMPORTANT USER INSTRUCTIONS **:
  37. - Users must serial-update using the v0.3 HEX file
  38. - DO NOT update from v0.2 using the UPD file
  39. - May need to install the crcmod package: eg "pip3 install crcmod"
  40. ** v0.2 - 29 October 2019
  41. - USB: Fix hangs during "gw.py read"
  42. - Thanks to Charlie Smurthwaite for telling me how to fix this!
  43. - USB: Improved bandwidth (double-buffered IN/OUT endpoints)
  44. - Reduces risk of buffer underflow/overflow during disk operations
  45. - Firmware Update: Requires a jumper across A14 (aka DCL) and GND
  46. - eg. "python gw.py update Greaseweazle-v0.2.upd COM3"
  47. ** v0.1 - 17 October 2019
  48. - First release