Move API_SYSEX_MAX_SIZE out of config_common.h (#12302)

This commit is contained in:
Ryan 2021-03-25 22:30:42 +11:00 committed by GitHub
parent c59fb1b477
commit eae7343741
Failed to generate hash of commit
3 changed files with 3 additions and 3 deletions

View file

@ -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)