api_sysex.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* Copyright 2016 Jack Humbert, Fred Sundvik
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "api_sysex.h"
  17. #include "sysex_tools.h"
  18. #include "print.h"
  19. void send_bytes_sysex(uint8_t message_type, uint8_t data_type, uint8_t * bytes, uint16_t length) {
  20. // SEND_STRING("\nTX: ");
  21. // for (uint8_t i = 0; i < length; i++) {
  22. // send_byte(bytes[i]);
  23. // SEND_STRING(" ");
  24. // }
  25. if (length > API_SYSEX_MAX_SIZE) {
  26. xprintf("Sysex msg too big %d %d %d", message_type, data_type, length);
  27. return;
  28. }
  29. // The buffer size required is calculated as the following
  30. // API_SYSEX_MAX_SIZE is the maximum length
  31. // In addition to that we have a two byte message header consisting of the message_type and data_type
  32. // This has to be encoded with an additional overhead of one byte for every starting 7 bytes
  33. // We just add one extra byte in case it's not divisible by 7
  34. // Then we have an unencoded header consisting of 4 bytes
  35. // Plus a one byte terminator
  36. const unsigned message_header = 2;
  37. const unsigned unencoded_message = API_SYSEX_MAX_SIZE + message_header;
  38. const unsigned encoding_overhead = unencoded_message / 7 + 1;
  39. const unsigned encoded_size = unencoded_message + encoding_overhead;
  40. const unsigned unencoded_header = 4;
  41. const unsigned terminator = 1;
  42. const unsigned buffer_size = encoded_size + unencoded_header + terminator;
  43. uint8_t buffer[encoded_size + unencoded_header + terminator];
  44. // The unencoded header
  45. buffer[0] = 0xF0;
  46. buffer[1] = 0x00;
  47. buffer[2] = 0x00;
  48. buffer[3] = 0x00;
  49. // We copy the message to the end of the array, this way we can do an inplace encoding, using the same
  50. // buffer for both input and output
  51. const unsigned message_size = length + message_header;
  52. uint8_t* unencoded_start = buffer + buffer_size - message_size;
  53. uint8_t* ptr = unencoded_start;
  54. *(ptr++) = message_type;
  55. *(ptr++) = data_type;
  56. memcpy(ptr, bytes, length);
  57. unsigned encoded_length = sysex_encode(buffer + unencoded_header, unencoded_start, message_size);
  58. unsigned final_size = unencoded_header + encoded_length + terminator;
  59. buffer[final_size - 1] = 0xF7;
  60. midi_send_array(&midi_device, final_size, buffer);
  61. // SEND_STRING("\nTD: ");
  62. // for (uint8_t i = 0; i < encoded_length + 5; i++) {
  63. // send_byte(buffer[i]);
  64. // SEND_STRING(" ");
  65. // }
  66. }