You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
3.1 KiB

Merge ChibiOS and LUFA descriptor support (#2362) * Move lufa descriptor to protocol/usb_descriptor * Try to compile usb_descriptor on ChibiOS * Add lufa_utils for ChibiOS Lufa USB descriptors for ChibiOS * More lufa_util compatibility fixes * First compiling version of shared USB descriptor * Send the usb descriptors * Fix the CONSOLE output on ChibiOS * Add errors for unsupported interfaces * Enable support for vitual serial port USB descriptors * Implement virtual serial port for ChibiOS * Cleanup the lufa_utils Use the default lufa header files * Add raw hid support for ChibiOS This is completely untested * Enable midi compilation on ChibiOS * Move midi functionality out of lufa.c * Don't register sysex callback when not needed * ChibiOS compilation fixes * Update ChibiOS submodule * Fix the Midi USB descriptor It didn't work properly when both Midi and Virtual serial port was enabled. * Add MIDI support for ChibiOS * Fix USB descriptor strings on ChibiOS * Use serial usb driver for raw hid * Generalize the ChibiOS stream like drivers This makes the initialization much more simple and eliminates a lot of the code duplication. * Convert console output to chibios stream driver * Fixes for ChibiOS update * Update the ChibiOS contrib submodule To include the usb data toggle synchronization fixes * Fix duplicate reset enumeration on ChibiOS * Add missing include * Add number of endpoints check for ChibiOS * Enable serial USB driver on all keyboards * Add missing includes when API is enabled withot midi * Add another missing inlcude
6 years ago
  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. #include "qmk_midi.h"
  20. void send_bytes_sysex(uint8_t message_type, uint8_t data_type, uint8_t* bytes, uint16_t length) {
  21. // SEND_STRING("\nTX: ");
  22. // for (uint8_t i = 0; i < length; i++) {
  23. // send_byte(bytes[i]);
  24. // SEND_STRING(" ");
  25. // }
  26. if (length > API_SYSEX_MAX_SIZE) {
  27. xprintf("Sysex msg too big %d %d %d", message_type, data_type, length);
  28. return;
  29. }
  30. // The buffer size required is calculated as the following
  31. // API_SYSEX_MAX_SIZE is the maximum length
  32. // In addition to that we have a two byte message header consisting of the message_type and data_type
  33. // This has to be encoded with an additional overhead of one byte for every starting 7 bytes
  34. // We just add one extra byte in case it's not divisible by 7
  35. // Then we have an unencoded header consisting of 4 bytes
  36. // Plus a one byte terminator
  37. const unsigned message_header = 2;
  38. const unsigned unencoded_message = API_SYSEX_MAX_SIZE + message_header;
  39. const unsigned encoding_overhead = unencoded_message / 7 + 1;
  40. const unsigned encoded_size = unencoded_message + encoding_overhead;
  41. const unsigned unencoded_header = 4;
  42. const unsigned terminator = 1;
  43. const unsigned buffer_size = encoded_size + unencoded_header + terminator;
  44. uint8_t buffer[encoded_size + unencoded_header + terminator];
  45. // The unencoded header
  46. buffer[0] = 0xF0;
  47. buffer[1] = 0x00;
  48. buffer[2] = 0x00;
  49. buffer[3] = 0x00;
  50. // We copy the message to the end of the array, this way we can do an inplace encoding, using the same
  51. // buffer for both input and output
  52. const unsigned message_size = length + message_header;
  53. uint8_t* unencoded_start = buffer + buffer_size - message_size;
  54. uint8_t* ptr = unencoded_start;
  55. *(ptr++) = message_type;
  56. *(ptr++) = data_type;
  57. memcpy(ptr, bytes, length);
  58. unsigned encoded_length = sysex_encode(buffer + unencoded_header, unencoded_start, message_size);
  59. unsigned final_size = unencoded_header + encoded_length + terminator;
  60. buffer[final_size - 1] = 0xF7;
  61. midi_send_array(&midi_device, final_size, buffer);
  62. // SEND_STRING("\nTD: ");
  63. // for (uint8_t i = 0; i < encoded_length + 5; i++) {
  64. // send_byte(buffer[i]);
  65. // SEND_STRING(" ");
  66. // }
  67. }