diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2016-11-23 20:16:38 -0500 |
|---|---|---|
| committer | Jack Humbert <jack.humb@gmail.com> | 2016-11-23 20:16:38 -0500 |
| commit | cefa8468fb5f28bd67a0c02d371a4aef0964e20c (patch) | |
| tree | 70503054c509f86b30c0279e97cf946cf6aa2353 /quantum/quantum.c | |
| parent | 2e23689b8e3222982082c1f5a4f8ce7686f9658b (diff) | |
| download | qmk_firmware-cefa8468fb5f28bd67a0c02d371a4aef0964e20c.tar.gz qmk_firmware-cefa8468fb5f28bd67a0c02d371a4aef0964e20c.zip | |
travis pls
Diffstat (limited to 'quantum/quantum.c')
| -rw-r--r-- | quantum/quantum.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index f9f1ef22d..8372a7adc 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
| @@ -847,8 +847,13 @@ void send_nibble(uint8_t number) { | |||
| 847 | } | 847 | } |
| 848 | } | 848 | } |
| 849 | 849 | ||
| 850 | 850 | void send_unicode_midi(uint32_t unicode) { | |
| 851 | 851 | #ifdef MIDI_ENABLE | |
| 852 | uint8_t chunk[4]; | ||
| 853 | dword_to_bytes(unicode, chunk); | ||
| 854 | MT_SEND_DATA(DT_UNICODE, chunk, 5); | ||
| 855 | #endif | ||
| 856 | } | ||
| 852 | 857 | ||
| 853 | __attribute__ ((weak)) | 858 | __attribute__ ((weak)) |
| 854 | void led_set_user(uint8_t usb_led) { | 859 | void led_set_user(uint8_t usb_led) { |
