Navigation Menu

Skip to content

Releases: dwhinham/mt32-pi

v0.13.1

18 Mar 20:32
Compare
Choose a tag to compare

Changed

  • Replaced rotary encoder routines with a much more robust algorithm borrowed from FlashFloppy.
  • Kernels are now gzip-compressed, which saves some SD card space and may slightly reduce loading times.

Fixed

  • Memory corruption/crashing caused by faulty ring buffer dequeue implementation.
  • Updater: self-update URL was incorrect after the main git branch was renamed. Please manually re-download mt32pi_updater.py.

v0.13.0

23 Feb 22:42
Compare
Choose a tag to compare

Added

  • Ability to reverse global left and right audio channels (new configuration file option) to work around broken hardware (issue #307).
  • Support for CP2104 (and possibly other members of CP210x family) USB serial devices (issue #305). Thanks to @gritd and @ajhuitsing for reporting/finding a solution!
    • This is currently achieved by applying a temporary patch to Circle to remove a part number check in the CP2102 driver.

Changed

  • Update to circle-stdlib v16/Circle Step 45.1.
  • Update ARM toolchains to 11.3.rel1.
  • Update to libmt32emu v2.7.0.
  • Update to FluidSynth v2.3.1.
  • Update to inih r56.
  • Volume up/down buttons in the simple_buttons control scheme now repeat and accelerate when pressed and held (issue #323).
  • Updater: config.txt is now replaced on update, however the avoid_warnings setting is preserved (the only setting that matters to most users).
  • Updater: improved error handling.
  • Installer: less often-selected Wi-Fi countries have been moved to a separate list.

Fixed

  • Incorrect I虏C clock speed with recent Raspberry Pi firmware versions (issue #292). This was caused by core clock frequency scaling by the GPU firmware. Changes to config.txt have been added to ensure the I虏C clock is stable by locking the core frequency to 250MHz. The newer Raspberry Pi firmware has been restored.
  • Some USB MIDI controllers which make use of interrupt endpoints would not be usable (e.g. some Novation models).
  • Installer: invalid Wi-Fi countries removed from list according to driver source.
  • Installer: if using a wpa_supplicant.conf copied from a MiSTer system, invalid lines are now removed (e.g. "ctrl_interface") as they will fail under mt32-pi.

v0.12.1

14 Jun 18:45
Compare
Choose a tag to compare

Fixed

  • I虏C communications failure on MiSTer introduced with newer Raspberry Pi firmware. The previous firmware version has been restored until this is resolved.

v0.12.0

13 Jun 21:51
Compare
Choose a tag to compare

Added

  • Support for SSD1305 displays via a temporary hack (assume SSD1305 when width is set to 132). Further details in the wiki.
  • Support for WM8960 DACs (e.g. Waveshare WM8960 Audio HAT).

Changed

  • Update to circle-stdlib v15.13/Circle Step 44.5.
  • Update to libmt32emu v2.6.3.
  • Update to FluidSynth v2.2.7.
  • The i2c_dac_address and i2c_dac_init configuration options have been deprecated and have no longer have any effect. DACs requiring initialization are now automatically detected.
  • The [fluidsynth.soundfont.x] sections have now been deprecated. SoundFont effects profiles must now be stored in separate .cfg files, with the same file name as the SoundFont (minus extension). This means that file index no longer influences SoundFont settings. See soundfonts/GeneralUser GS v1.511.cfg for an example.
  • The maximum number of SoundFonts has been increased to 512.
  • Updater: deprecated options are now removed when merging configs.
  • Installer: missing tools (e.g. dialog, jq) are now reported if they are missing from the system.

Fixed

  • HDMI audio channels were reversed.
  • USB MIDI device stability improvements.

v0.11.3

13 Apr 14:36
Compare
Choose a tag to compare

Changed

  • Update to inih r55.

Fixed

  • Ethernet connectivity was broken on some Raspberry Pi models. Thanks to Sal Bugliarisi, retro and MorkMikael for the reports!
  • Network disconnection/reconnection notifications were broken.

v0.11.2

25 Mar 18:51
Compare
Choose a tag to compare

Added

  • Support for network MIDI via raw UDP socket (new configuration file option). This is compatible with MiSTer MidiLink.
  • New Bash/Python scripts for making the installation/update process easier, especially on MiSTer FPGA (see the scripts directory for download/information).

Changed

  • Update to circle-stdlib v15.12/Circle Step 44.4.1.
  • Update to FluidSynth v2.2.6.
  • Update to inih r54.

v0.11.1

10 Mar 15:34
Compare
Choose a tag to compare

Added

  • Implemented RNFR/RNTO (file/directory renaming) in the FTP server.
  • Support for SSD1312 OLED displays via new horizontal mirroring configuration file option - thanks @nikitalita!

Changed

  • Update to libmt32emu v2.6.1.
    • This update adds support for MT-32 ROM versions 2.06, 2.07 and CM-32LN ROM version 1.00 (CM-32LN is untested).
  • Update to FluidSynth v2.2.5.
  • MT-32 LCD emulation replaced with new libmt32emu v2.6+ display emulation.
  • FluidSynth's master volume gain is now an effects profile setting and can be overridden on a per-SoundFont basis (issue #248). Thanks to @c0d3h4x0r for the suggestion!

Fixed

  • A bug in the config file reader (unterminated string) could cause the last entry in the file to be read as a corrupted value if the file ended without a newline.
  • Some FTP commands could work without being logged in.
  • Some DAC accessories which make use of a hardware "mute" pin (e.g. Adafruit I虏S Audio Bonnet) could be held in a muted state due to a conflict with the Blokas Pisound driver's probing routine (issue #233). The driver now resets these GPIO pins to the initial power-on state, which should fix this issue. Thanks to @htamas2 for the report!
  • Sudden loud noise caused by switching SoundFonts whilst receiving MIDI data (issue #247). Any note-on messages received whilst busy switching SoundFonts are now discarded. Thanks to @c0d3h4x0r for the report!

v0.11.0

12 Dec 23:40
Compare
Choose a tag to compare

Added

  • Support for the new Raspberry Pi Zero 2 W.
    • You must update config.txt, otherwise the Zero 2 W will boot the 32-bit Raspberry Pi 2 kernel, which will result in lower performance.
    • This model requires new boot firmware and Wi-Fi firmware - make sure you update bootcode.bin, fixup*.dat, start*.elf, and the contents of the firmware directory.
    • PWM audio is available on GPIO pins 12/13 for this model.
  • Experimental embedded FTP server for performing updates/config changes without replacing the SD card (new configuration file options).
    • This FTP server is a very basic implementation which DOES NOT feature any kind of transport layer security/encryption. Therefore, you should NOT enable this feature on a public network or expose the Raspberry Pi to the Internet.
    • The FTP server is disabled by default.
  • Support for Yamaha MU-series SysEx text messages, and bitmap messages when using a graphical display.

Changed

  • Update to circle-stdlib v15.10/Circle Step 44.3.
  • Update ARM toolchains to 10.3-2021.07.
  • Update to libmt32emu v2.5.3.
  • Update to FluidSynth v2.2.4.
  • The default FluidSynth polyphony value has been reduced from 256 to 200 to account for the lower out-of-the-box performance of the Pi Zero 2 W.
    • For the vast majority of use cases, this will have no noticable difference.
    • If you prefer, a +200MHz overclock can be applied to the Zero 2 W match the performance of the Raspberry Pi 3B (1.2GHz), in which case you can use the original higher polyphony value of 256. Commented-out example of how to do this is now provided in config.txt.
    • Heatsink/cooling recommended to ensure stability if you decide to do the above.

Fixed

  • "WiFi disconnected!" would be shown on the LCD when Ethernet was disconnected.
  • The SoundFont loading "spinner" was broken since v0.10.0.

v0.10.3

19 Sep 20:18
Compare
Choose a tag to compare

Fixed

  • Broken UART error handling since v0.10.2 which would result in erratic, false MIDI activity under some circumstances. Many thanks to WiteWulf and Alex Mitchell for the report!

v0.10.2

11 Aug 18:27
Compare
Choose a tag to compare

Added

  • Ability to swap the MT-32 stereo channels in order to work around bugs in games that are not aware of the MT-32's reversed panpot value interpretation (new configuration file option and custom SysEx message).

Changed

  • MIDI and UART related warnings are now hidden unless verbose mode is enabled in the configuration file. This is a preventative measure against false bug reports stemming from buggy games/user equipment, and to improve aesthetics (real synthesizers tend to silently ignore harmless stray MIDI bytes).

Fixed

  • Guru Meditation that could occur if non-default mt32emu options were specified but the synth was unavailable due to missing ROMs.