-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move pitch bend logic into main MIDI module
- Loading branch information
1 parent
171eca8
commit df6d865
Showing
11 changed files
with
72 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
#pragma once | ||
#include "types.h" | ||
|
||
void midi_dac_note_on(u8 chan, u8 pitch, u8 velocity); | ||
void midi_dac_pitch_bend(u8 chan, u16 bend); | ||
void midi_dac_note_on(u8 chan, u8 pitch, s8 cents, u8 velocity); | ||
void midi_dac_reset(void); | ||
void midi_dac_note_off(u8 chan, u8 pitch); | ||
void midi_dac_channel_volume(u8 chan, u8 volume); | ||
void midi_dac_pan(u8 chan, u8 pan); | ||
void midi_dac_program(u8 chan, u8 program); | ||
void midi_dac_all_notes_off(u8 chan); | ||
void midi_dac_pitch(u8 chan, u8 pitch, u8 cents); | ||
void midi_dac_pitch(u8 chan, u8 pitch, s8 cents); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.