Skip to content

Commit

Permalink
Deprecate MIDI_CC::Data_Entry_MSB_LSB
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Feb 8, 2024
1 parent 1326797 commit cdd5f6f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/MIDI_Constants/Control_Change.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ constexpr uint8_t Breath_Controller_LSB = 0x20 + 0x02;
// 23 Undefined
constexpr uint8_t Foot_Controller_LSB = 0x20 + 0x04;
constexpr uint8_t Portamento_Time_LSB = 0x20 + 0x05;
constexpr uint8_t Data_Entry_MSB_LSB = 0x20 + 0x06;
constexpr uint8_t Data_Entry_MSB_LSB CS_DEPREC("Use Data_Entry_LSB instead")
= 0x20 + 0x06;
constexpr uint8_t Data_Entry_LSB = 0x20 + 0x06;
constexpr uint8_t Channel_Volume_LSB = 0x20 + 0x07;
constexpr uint8_t Balance_LSB = 0x20 + 0x08;
// 29 Undefined
Expand Down

0 comments on commit cdd5f6f

Please sign in to comment.