1
0
Fork 0

separated into api files/folder

This commit is contained in:
Jack Humbert 2016-11-26 15:37:46 -05:00
parent f25596b8dc
commit 7edac212c8
15 changed files with 303 additions and 283 deletions

10
quantum/api/api_sysex.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef _API_SYSEX_H_
#define _API_SYSEX_H_
#include "api.h"
void send_bytes_sysex(uint8_t message_type, uint8_t data_type, uint8_t * bytes, uint16_t length);
#define SEND_BYTES(mt, dt, b, l) send_bytes_sysex(mt, dt, b, l)
#endif