您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2013 PJRC.COM, LLC.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sublicense, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject to
  11. * the following conditions:
  12. *
  13. * 1. The above copyright notice and this permission notice shall be
  14. * included in all copies or substantial portions of the Software.
  15. *
  16. * 2. If the Software is incorporated into a build system that allows
  17. * selection among a list of target devices, then similar target
  18. * devices manufactured by PJRC.COM must be included in the list of
  19. * target devices and selectable in the same manner.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  25. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  26. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  27. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  28. * SOFTWARE.
  29. */
  30. #include "usb_dev.h"
  31. #include "usb_midi.h"
  32. #include "core_pins.h" // for yield()
  33. #include "HardwareSerial.h"
  34. #ifdef MIDI_INTERFACE // defined by usb_dev.h -> usb_desc.h
  35. #if F_CPU >= 20000000
  36. uint8_t usb_midi_msg_channel;
  37. uint8_t usb_midi_msg_type;
  38. uint8_t usb_midi_msg_data1;
  39. uint8_t usb_midi_msg_data2;
  40. uint8_t usb_midi_msg_sysex[USB_MIDI_SYSEX_MAX];
  41. uint8_t usb_midi_msg_sysex_len;
  42. void (*usb_midi_handleNoteOff)(uint8_t ch, uint8_t note, uint8_t vel) = NULL;
  43. void (*usb_midi_handleNoteOn)(uint8_t ch, uint8_t note, uint8_t vel) = NULL;
  44. void (*usb_midi_handleVelocityChange)(uint8_t ch, uint8_t note, uint8_t vel) = NULL;
  45. void (*usb_midi_handleControlChange)(uint8_t ch, uint8_t control, uint8_t value) = NULL;
  46. void (*usb_midi_handleProgramChange)(uint8_t ch, uint8_t program) = NULL;
  47. void (*usb_midi_handleAfterTouch)(uint8_t ch, uint8_t pressure) = NULL;
  48. void (*usb_midi_handlePitchChange)(uint8_t ch, int pitch) = NULL;
  49. void (*usb_midi_handleSysEx)(const uint8_t *data, uint16_t length, uint8_t complete) = NULL;
  50. void (*usb_midi_handleRealTimeSystem)(uint8_t rtb) = NULL;
  51. // Maximum number of transmit packets to queue so we don't starve other endpoints for memory
  52. #define TX_PACKET_LIMIT 6
  53. static usb_packet_t *rx_packet=NULL;
  54. static usb_packet_t *tx_packet=NULL;
  55. static uint8_t transmit_previous_timeout=0;
  56. static uint8_t tx_noautoflush=0;
  57. // When the PC isn't listening, how long do we wait before discarding data?
  58. #define TX_TIMEOUT_MSEC 40
  59. #if F_CPU == 168000000
  60. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 1100)
  61. #elif F_CPU == 144000000
  62. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 932)
  63. #elif F_CPU == 120000000
  64. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 764)
  65. #elif F_CPU == 96000000
  66. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 596)
  67. #elif F_CPU == 72000000
  68. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 512)
  69. #elif F_CPU == 48000000
  70. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 428)
  71. #elif F_CPU == 24000000
  72. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 262)
  73. #endif
  74. void usb_midi_write_packed(uint32_t n)
  75. {
  76. uint32_t index, wait_count=0;
  77. tx_noautoflush = 1;
  78. if (!tx_packet) {
  79. while (1) {
  80. if (!usb_configuration) {
  81. //serial_print("error1\n");
  82. return;
  83. }
  84. if (usb_tx_packet_count(MIDI_TX_ENDPOINT) < TX_PACKET_LIMIT) {
  85. tx_packet = usb_malloc();
  86. if (tx_packet) break;
  87. }
  88. if (++wait_count > TX_TIMEOUT || transmit_previous_timeout) {
  89. transmit_previous_timeout = 1;
  90. //serial_print("error2\n");
  91. return;
  92. }
  93. yield();
  94. }
  95. }
  96. transmit_previous_timeout = 0;
  97. index = tx_packet->index;
  98. *((uint32_t *)(tx_packet->buf) + index++) = n;
  99. if (index < MIDI_TX_SIZE/4) {
  100. tx_packet->index = index;
  101. } else {
  102. tx_packet->len = MIDI_TX_SIZE;
  103. usb_tx(MIDI_TX_ENDPOINT, tx_packet);
  104. tx_packet = usb_malloc();
  105. }
  106. tx_noautoflush = 0;
  107. }
  108. void usb_midi_send_sysex(const uint8_t *data, uint32_t length)
  109. {
  110. // TODO: MIDI 2.5 lib automatically adds start and stop bytes
  111. while (length > 3) {
  112. usb_midi_write_packed(0x04 | (data[0] << 8) | (data[1] << 16) | (data[2] << 24));
  113. data += 3;
  114. length -= 3;
  115. }
  116. if (length == 3) {
  117. usb_midi_write_packed(0x07 | (data[0] << 8) | (data[1] << 16) | (data[2] << 24));
  118. } else if (length == 2) {
  119. usb_midi_write_packed(0x06 | (data[0] << 8) | (data[1] << 16));
  120. } else if (length == 1) {
  121. usb_midi_write_packed(0x05 | (data[0] << 8));
  122. }
  123. }
  124. void usb_midi_flush_output(void)
  125. {
  126. if (tx_noautoflush == 0 && tx_packet && tx_packet->index > 0) {
  127. tx_packet->len = tx_packet->index * 4;
  128. usb_tx(MIDI_TX_ENDPOINT, tx_packet);
  129. tx_packet = usb_malloc();
  130. }
  131. }
  132. void static sysex_byte(uint8_t b)
  133. {
  134. // when buffer is full, send another chunk to handler.
  135. if (usb_midi_msg_sysex_len == USB_MIDI_SYSEX_MAX) {
  136. if (usb_midi_handleSysEx) {
  137. (*usb_midi_handleSysEx)(usb_midi_msg_sysex, usb_midi_msg_sysex_len, 0);
  138. usb_midi_msg_sysex_len = 0;
  139. }
  140. }
  141. if (usb_midi_msg_sysex_len < USB_MIDI_SYSEX_MAX) {
  142. usb_midi_msg_sysex[usb_midi_msg_sysex_len++] = b;
  143. }
  144. }
  145. int usb_midi_read(uint32_t channel)
  146. {
  147. uint32_t n, index, ch, type1, type2;
  148. if (!rx_packet) {
  149. if (!usb_configuration) return 0;
  150. rx_packet = usb_rx(MIDI_RX_ENDPOINT);
  151. if (!rx_packet) return 0;
  152. if (rx_packet->len == 0) {
  153. usb_free(rx_packet);
  154. rx_packet = NULL;
  155. return 0;
  156. }
  157. }
  158. index = rx_packet->index;
  159. n = *(uint32_t *)(rx_packet->buf + index);
  160. //serial_print("midi rx, n=");
  161. //serial_phex32(n);
  162. //serial_print("\n");
  163. index += 4;
  164. if (index < rx_packet->len) {
  165. rx_packet->index = index;
  166. } else {
  167. usb_free(rx_packet);
  168. rx_packet = usb_rx(MIDI_RX_ENDPOINT);
  169. }
  170. type1 = n & 15;
  171. type2 = (n >> 12) & 15;
  172. ch = ((n >> 8) & 15) + 1;
  173. if (type1 >= 0x08 && type1 <= 0x0E) {
  174. if (channel && channel != ch) {
  175. // ignore other channels when user wants single channel read
  176. return 0;
  177. }
  178. if (type1 == 0x08 && type2 == 0x08) {
  179. usb_midi_msg_type = 0; // 0 = Note off
  180. if (usb_midi_handleNoteOff)
  181. (*usb_midi_handleNoteOff)(ch, (n >> 16), (n >> 24));
  182. } else
  183. if (type1 == 0x09 && type2 == 0x09) {
  184. if ((n >> 24) > 0) {
  185. usb_midi_msg_type = 1; // 1 = Note on
  186. if (usb_midi_handleNoteOn)
  187. (*usb_midi_handleNoteOn)(ch, (n >> 16), (n >> 24));
  188. } else {
  189. usb_midi_msg_type = 0; // 0 = Note off
  190. if (usb_midi_handleNoteOff)
  191. (*usb_midi_handleNoteOff)(ch, (n >> 16), (n >> 24));
  192. }
  193. } else
  194. if (type1 == 0x0A && type2 == 0x0A) {
  195. usb_midi_msg_type = 2; // 2 = Poly Pressure
  196. if (usb_midi_handleVelocityChange)
  197. (*usb_midi_handleVelocityChange)(ch, (n >> 16), (n >> 24));
  198. } else
  199. if (type1 == 0x0B && type2 == 0x0B) {
  200. usb_midi_msg_type = 3; // 3 = Control Change
  201. if (usb_midi_handleControlChange)
  202. (*usb_midi_handleControlChange)(ch, (n >> 16), (n >> 24));
  203. } else
  204. if (type1 == 0x0C && type2 == 0x0C) {
  205. usb_midi_msg_type = 4; // 4 = Program Change
  206. if (usb_midi_handleProgramChange)
  207. (*usb_midi_handleProgramChange)(ch, (n >> 16));
  208. } else
  209. if (type1 == 0x0D && type2 == 0x0D) {
  210. usb_midi_msg_type = 5; // 5 = After Touch
  211. if (usb_midi_handleAfterTouch)
  212. (*usb_midi_handleAfterTouch)(ch, (n >> 16));
  213. } else
  214. if (type1 == 0x0E && type2 == 0x0E) {
  215. usb_midi_msg_type = 6; // 6 = Pitch Bend
  216. if (usb_midi_handlePitchChange)
  217. (*usb_midi_handlePitchChange)(ch,
  218. ((n >> 16) & 0x7F) | ((n >> 17) & 0x3F80));
  219. } else {
  220. return 0;
  221. }
  222. return_message:
  223. usb_midi_msg_channel = ch;
  224. usb_midi_msg_data1 = (n >> 16);
  225. usb_midi_msg_data2 = (n >> 24);
  226. return 1;
  227. }
  228. if (type1 == 0x04) {
  229. sysex_byte(n >> 8);
  230. sysex_byte(n >> 16);
  231. sysex_byte(n >> 24);
  232. return 0;
  233. }
  234. if (type1 >= 0x05 && type1 <= 0x07) {
  235. sysex_byte(n >> 8);
  236. if (type1 >= 0x06) sysex_byte(n >> 16);
  237. if (type1 == 0x07) sysex_byte(n >> 24);
  238. usb_midi_msg_data1 = usb_midi_msg_sysex_len;
  239. usb_midi_msg_sysex_len = 0;
  240. usb_midi_msg_type = 7; // 7 = Sys Ex
  241. if (usb_midi_handleSysEx)
  242. (*usb_midi_handleSysEx)(usb_midi_msg_sysex, usb_midi_msg_data1, 1);
  243. return 1;
  244. }
  245. if (type1 == 0x0F) {
  246. // TODO: does this need to be a full MIDI parser?
  247. // What software actually uses this message type in practice?
  248. if (usb_midi_msg_sysex_len > 0) {
  249. // From David Sorlien, dsorlien at gmail.com, http://axe4live.wordpress.com
  250. // OSX sometimes uses Single Byte Unparsed to
  251. // send bytes in the middle of a SYSEX message.
  252. sysex_byte(n >> 8);
  253. } else {
  254. // From Sebastian Tomczak, seb.tomczak at gmail.com
  255. // http://little-scale.blogspot.com/2011/08/usb-midi-game-boy-sync-for-16.html
  256. usb_midi_msg_type = 8;
  257. if (usb_midi_handleRealTimeSystem)
  258. (*usb_midi_handleRealTimeSystem)(n >> 8);
  259. goto return_message;
  260. }
  261. }
  262. return 0;
  263. }
  264. #endif // F_CPU
  265. #endif // MIDI_INTERFACE