Skip to content

Commit

Permalink
Update libavr32 for cdc size fix (monome#325)
Browse files Browse the repository at this point in the history
* Update libavr32 for cdc size fix

* Make sure new MIDI message handlers are initialized

* Update changelog & what's new
  • Loading branch information
Dewb authored Aug 21, 2023
1 parent 403eadb commit 72193af
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
- **NEW**: basic menu for reading/writing scenes when a USB stick is inserted
- **NEW**: new ops: `CV.CAL` and `CV.CAL.RESET` to calibrate CV outputs
- **FIX**: N.CS scales 7 & 8 were incorrectly swapped; make them consistent with N.S and docs
- **FIX**: libavr32 update: support CDC grid size detection (e.g. zero), increase HID message buffer

## v4.0.0

Expand Down
1 change: 1 addition & 0 deletions docs/whats_new.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
- **NEW**: basic menu for reading/writing scenes when a USB stick is inserted
- **NEW**: new ops: `CV.CAL` and `CV.CAL.RESET` to calibrate CV outputs
- **FIX**: N.CS scales 7 & 8 were incorrectly swapped; make them consistent with N.S and docs
- **FIX**: libavr32 update: support CDC grid size detection (e.g. zero), increase HID message buffer

## v4.0.0

Expand Down
2 changes: 1 addition & 1 deletion libavr32
2 changes: 2 additions & 0 deletions module/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -984,11 +984,13 @@ static void setup_midi(void) {
midi_behavior.channel_pressure = NULL;
midi_behavior.pitch_bend = NULL;
midi_behavior.control_change = &midi_control_change;
midi_behavior.program_change = NULL;
midi_behavior.clock_tick = &midi_clock_tick;
midi_behavior.seq_start = &midi_seq_start;
midi_behavior.seq_stop = &midi_seq_stop;
midi_behavior.seq_continue = &midi_seq_continue;
midi_behavior.panic = NULL;
midi_behavior.aftertouch = NULL;
}


Expand Down

0 comments on commit 72193af

Please sign in to comment.