RELEASE_NOTES 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ************************************
  2. ** Greaseweazle Release Notes
  3. ** Keir Fraser <keir.xen@gmail.com>
  4. ************************************
  5. ** v0.12 - 10 March 2020
  6. - GW Autodetect: General improvements, and now works on Windows 7
  7. - New read parameter --double-step to double-step drive heads
  8. - Useful for reading a 40-cylinder disk in an 80-cylinder drive
  9. - New 'pin' command allows a floppy pin to be set to specified level
  10. - Currently supported only for pin 2 (DENSEL)
  11. - New 'reset' command resets the Greaseweazle to power-on settings
  12. - Motors off, drives deselected, power-on pin levels and delay values
  13. ** v0.11 - 21 January 2020
  14. - GW.py: Auto-detect the COM/serial port device name
  15. - The device argument is now optional!
  16. - USB: Provide a serial-id string to the host
  17. - Identifier is unique to each Greaseweazle device
  18. - Allows disambiguation between multiple Greaseweazle devices
  19. - Recommended: Full flash from HEX file (embeds serial in bootloader)
  20. - Ubuntu: Udev script now creates a /dev/greaseweazle symlink
  21. ** v0.10 - 17 January 2020
  22. - STM32F7xx: Multi-drive support via drive-select config option
  23. - Up to three Shugart drives or two IBM/PC drives
  24. - gw.py read|write --drive {a,b,0,1,2}
  25. - See the "Drive Select" wiki page
  26. ** v0.9 - 7 January 2020
  27. - Activity LED
  28. - Lights while a USB-issued command is in progress
  29. - Flashes when enumerated but idle in the firmware-update bootloader
  30. ** v0.8 - 6 January 2020
  31. - STM32F73xx: Various Fixes and Improvements
  32. - Allow Firmware Update mode to be forced via strapping Serial RX/TX
  33. - Fix bogus sample values at start of read flux values
  34. - Fix some time constants to be in units of the sample clock
  35. - USB: Advertise USB 2.0 device descriptor
  36. ** v0.7 - 6 December 2019
  37. - USB: Fix end-of-stream detection on track writes
  38. - Writes of empty/unformatted tracks sometimes hung forever
  39. - No Flux Area: Firmware automatically masters long NFAs during track writes
  40. - Generating no flux transitions does not read back as a NFA
  41. - STM32F73xx: Initial support for new STM32 MCU
  42. - Two HEX files are included: Use Greaseweazle-F1-* for existing boards!
  43. - Single unified UPD file containing both firmware images
  44. ** v0.6 - 15 November 2019
  45. - gw.py: Big overhaul of underlying Python package
  46. - Action (read, write, update) must come first on the command line
  47. - eg. "python3 gw.py read --ecyl=39 foo.scp COM3"
  48. - gw.py: New action "delays" to print/set delay parameters
  49. - eg. "python3 gw.py delays --step=10000" to increase step time to 10ms
  50. ** v0.5 - 11 November 2019
  51. - USB: Overhaul the protocol and allow writes to be terminated at index
  52. - Terminate-at-index is always used by current Python control script
  53. - Terminate-at-index prevents an over-long write from overwriting itself
  54. - Fix interruption of track writes (eg. KeyboardInterrupt)
  55. - gw.py: New option --adjust-speed to normalise flux times for target drive
  56. - Measures RPM of the target drive and calculates an adjustment factor
  57. ** v0.4 - 5 November 2019
  58. - Blinky: Diagnostic test firmware to detect fake STM32 chips
  59. - https://github.com/keirf/Greaseweazle/wiki/STM32-Fakes
  60. - Floppy Write: Fix for very short flux timings
  61. - Floppy Read: Fix for very long flux timings
  62. - USB: Small improvement to double-buffer logic
  63. ** v0.3 - 30 October 2019
  64. - Bootloader: Fix Programming-Jumper detection
  65. - Read Track: Various minor fixes
  66. - SCP: Fix the SCP file headers generated by "gw.py read"
  67. ** IMPORTANT USER INSTRUCTIONS **:
  68. - Users must serial-update using the v0.3 HEX file
  69. - DO NOT update from v0.2 using the UPD file
  70. - May need to install the crcmod package: eg "pip3 install crcmod"
  71. ** v0.2 - 29 October 2019
  72. - USB: Fix hangs during "gw.py read"
  73. - Thanks to Charlie Smurthwaite for telling me how to fix this!
  74. - USB: Improved bandwidth (double-buffered IN/OUT endpoints)
  75. - Reduces risk of buffer underflow/overflow during disk operations
  76. - Firmware Update: Requires a jumper across A14 (aka DCL) and GND
  77. - eg. "python gw.py update Greaseweazle-v0.2.upd COM3"
  78. ** v0.1 - 17 October 2019
  79. - First release