diff options
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/api/api_sysex.h | 2 | ||||
-rw-r--r-- | quantum/config_common.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/quantum/api/api_sysex.h b/quantum/api/api_sysex.h index 382f4bea44..eb0a18848d 100644 --- a/quantum/api/api_sysex.h +++ b/quantum/api/api_sysex.h @@ -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) diff --git a/quantum/config_common.h b/quantum/config_common.h index fa1ff2a5f5..d93477b27e 100644 --- a/quantum/config_common.h +++ b/quantum/config_common.h @@ -24,6 +24,4 @@ #define COL2ROW 0 #define ROW2COL 1 -#define API_SYSEX_MAX_SIZE 32 - #include "song_list.h" |