Skip to content

Commit

Permalink
Revert "Launchpad: Support for new Pro MK3 firmware"
Browse files Browse the repository at this point in the history
This reverts commit 9ecd3b1.
  • Loading branch information
mat1jaczyyy committed Sep 26, 2020
1 parent a4ead3e commit 0c44b49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Apollo/Elements/Launchpad.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public class Launchpad {
public static PortWarning ProMK3FirmwareUnsupported { get; private set; } = new PortWarning(
"One or more connected Launchpad Pro MK3s are running an older version of\n" +
"the official Novation firmware which is not compatible with \n" +
"Apollo Studio due to not having a dedicated Programmer or Legacy mode.\n\n" +
"Apollo Studio due to not having a dedicated Programmer mode.\n\n" +
"Update these to the latest version of the firmware using Novation Components\n" +
"or Launchpad Firmware Utility to avoid any potential issues with Apollo Studio.",
new PortWarning.Option(
Expand Down Expand Up @@ -345,12 +345,12 @@ LaunchpadType AttemptIdentify(MidiMessage response) {
if (response.Data[9] == 17) // Bootloader
return LaunchpadType.Unknown;

if (versionInt < 440) { // No Programmer/Legacy mode
if (versionInt < 440) { // No Programmer mode
ProMK3FirmwareUnsupported.Set();
return LaunchpadType.Unknown;
}

if (versionInt < 461) // Old Firmware
if (versionInt < 450) // Old Firmware
ProMK3FirmwareOld.Set();

return LaunchpadType.ProMK3;
Expand Down

0 comments on commit 0c44b49

Please sign in to comment.