api_sysex.h 233 B

12345678910
  1. #ifndef _API_SYSEX_H_
  2. #define _API_SYSEX_H_
  3. #include "api.h"
  4. void send_bytes_sysex(uint8_t message_type, uint8_t data_type, uint8_t * bytes, uint16_t length);
  5. #define SEND_BYTES(mt, dt, b, l) send_bytes_sysex(mt, dt, b, l)
  6. #endif