aboutsummaryrefslogtreecommitdiff
path: root/quantum/quantum.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-11-26 15:37:46 -0500
committerJack Humbert <jack.humb@gmail.com>2016-11-26 15:38:44 -0500
commit7edac212c8ed8442bf4207e70dc8194631b2bf27 (patch)
treefd1905e1a24c237daa0e3e4172fe74f273d6b646 /quantum/quantum.c
parentf25596b8dc2f15f620c07164d871023d9284618c (diff)
downloadqmk_firmware-7edac212c8ed8442bf4207e70dc8194631b2bf27.tar.gz
qmk_firmware-7edac212c8ed8442bf4207e70dc8194631b2bf27.zip
separated into api files/folder
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 8372a7adc..f653564a6 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -847,12 +847,12 @@ void send_nibble(uint8_t number) {
847 } 847 }
848} 848}
849 849
850void send_unicode_midi(uint32_t unicode) { 850void api_send_unicode(uint32_t unicode) {
851 #ifdef MIDI_ENABLE 851#ifdef API_ENABLE
852 uint8_t chunk[4]; 852 uint8_t chunk[4];
853 dword_to_bytes(unicode, chunk); 853 dword_to_bytes(unicode, chunk);
854 MT_SEND_DATA(DT_UNICODE, chunk, 5); 854 MT_SEND_DATA(DT_UNICODE, chunk, 5);
855 #endif 855#endif
856} 856}
857 857
858__attribute__ ((weak)) 858__attribute__ ((weak))