mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-08 17:29:09 +00:00
Move API_SYSEX_MAX_SIZE
out of config_common.h
(#12302)
This commit is contained in:
parent
c59fb1b477
commit
eae7343741
3 changed files with 3 additions and 3 deletions
|
@ -18,6 +18,8 @@
|
|||
|
||||
#include "api.h"
|
||||
|
||||
#define API_SYSEX_MAX_SIZE 32
|
||||
|
||||
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)
|
||||
|
|
|
@ -24,6 +24,4 @@
|
|||
#define COL2ROW 0
|
||||
#define ROW2COL 1
|
||||
|
||||
#define API_SYSEX_MAX_SIZE 32
|
||||
|
||||
#include "song_list.h"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "usb_descriptor.h"
|
||||
#include "process_midi.h"
|
||||
#if API_SYSEX_ENABLE
|
||||
# include "api.h"
|
||||
# include "api_sysex.h"
|
||||
#endif
|
||||
|
||||
/*******************************************************************************
|
||||
|
|
Loading…
Reference in a new issue