Skip to content

Commit

Permalink
Add some constants for product version
Browse files Browse the repository at this point in the history
  • Loading branch information
rooftopmedia committed Feb 21, 2021
1 parent 1c9acec commit fe7630e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/interface/AxeSystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ enum class UpdateMode {
class AxeSystem {

public:
AxeSystem(byte sysexFractalVersion = SYSEX_AXE_VERSION) {

const static byte FRACTAL_PRODUCT_AXEFX3 = 0x10;
const static byte FRACTAL_PRODUCT_FM3 = 0x11;

AxeSystem(byte sysexFractalVersion = FRACTAL_PRODUCT_AXEFX3) {
_sysexFractalVersion = sysexFractalVersion;
_looper.setAxeSystem(this);
}
Expand Down
1 change: 0 additions & 1 deletion src/interface/private/AxeSystem_Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const static byte SYSEX_EFFECT_ENABLE = 0x00;
const static byte SYSEX_MANUFACTURER_BYTE1 = 0x00;
const static byte SYSEX_MANUFACTURER_BYTE2 = 0x01;
const static byte SYSEX_MANUFACTURER_BYTE3 = 0x74;
const static byte SYSEX_AXE_VERSION = 0x10;
const static byte SYSEX_QUERY_BYTE = 0x7F;
const static byte SYSEX_CHECKSUM_PLACEHOLDER = 0x00;

Expand Down

0 comments on commit fe7630e

Please sign in to comment.