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.

пре 11 година
пре 10 година
пре 11 година
пре 10 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 8 година
пре 8 година
пре 11 година
пре 11 година
пре 9 година
пре 11 година
пре 11 година
пре 9 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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. void (*usb_midi_handleTimeCodeQuarterFrame)(uint16_t data) = NULL;
  52. // Maximum number of transmit packets to queue so we don't starve other endpoints for memory
  53. #define TX_PACKET_LIMIT 6
  54. static usb_packet_t *rx_packet=NULL;
  55. static usb_packet_t *tx_packet=NULL;
  56. static uint8_t transmit_previous_timeout=0;
  57. static uint8_t tx_noautoflush=0;
  58. // When the PC isn't listening, how long do we wait before discarding data?
  59. #define TX_TIMEOUT_MSEC 40
  60. #if F_CPU == 240000000
  61. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 1600)
  62. #elif F_CPU == 216000000
  63. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 1440)
  64. #elif F_CPU == 192000000
  65. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 1280)
  66. #elif F_CPU == 180000000
  67. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 1200)
  68. #elif F_CPU == 168000000
  69. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 1100)
  70. #elif F_CPU == 144000000
  71. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 932)
  72. #elif F_CPU == 120000000
  73. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 764)
  74. #elif F_CPU == 96000000
  75. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 596)
  76. #elif F_CPU == 72000000
  77. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 512)
  78. #elif F_CPU == 48000000
  79. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 428)
  80. #elif F_CPU == 24000000
  81. #define TX_TIMEOUT (TX_TIMEOUT_MSEC * 262)
  82. #endif
  83. void usb_midi_write_packed(uint32_t n)
  84. {
  85. uint32_t index, wait_count=0;
  86. tx_noautoflush = 1;
  87. if (!tx_packet) {
  88. while (1) {
  89. if (!usb_configuration) {
  90. //serial_print("error1\n");
  91. return;
  92. }
  93. if (usb_tx_packet_count(MIDI_TX_ENDPOINT) < TX_PACKET_LIMIT) {
  94. tx_packet = usb_malloc();
  95. if (tx_packet) break;
  96. }
  97. if (++wait_count > TX_TIMEOUT || transmit_previous_timeout) {
  98. transmit_previous_timeout = 1;
  99. //serial_print("error2\n");
  100. return;
  101. }
  102. yield();
  103. }
  104. }
  105. transmit_previous_timeout = 0;
  106. index = tx_packet->index;
  107. //*((uint32_t *)(tx_packet->buf) + index++) = n;
  108. ((uint32_t *)(tx_packet->buf))[index++] = n;
  109. if (index < MIDI_TX_SIZE/4) {
  110. tx_packet->index = index;
  111. } else {
  112. tx_packet->len = MIDI_TX_SIZE;
  113. usb_tx(MIDI_TX_ENDPOINT, tx_packet);
  114. tx_packet = usb_malloc();
  115. }
  116. tx_noautoflush = 0;
  117. }
  118. void usb_midi_send_sysex(const uint8_t *data, uint32_t length)
  119. {
  120. // TODO: MIDI 2.5 lib automatically adds start and stop bytes
  121. while (length > 3) {
  122. usb_midi_write_packed(0x04 | (data[0] << 8) | (data[1] << 16) | (data[2] << 24));
  123. data += 3;
  124. length -= 3;
  125. }
  126. if (length == 3) {
  127. usb_midi_write_packed(0x07 | (data[0] << 8) | (data[1] << 16) | (data[2] << 24));
  128. } else if (length == 2) {
  129. usb_midi_write_packed(0x06 | (data[0] << 8) | (data[1] << 16));
  130. } else if (length == 1) {
  131. usb_midi_write_packed(0x05 | (data[0] << 8));
  132. }
  133. }
  134. void usb_midi_flush_output(void)
  135. {
  136. if (tx_noautoflush == 0 && tx_packet && tx_packet->index > 0) {
  137. tx_packet->len = tx_packet->index * 4;
  138. usb_tx(MIDI_TX_ENDPOINT, tx_packet);
  139. tx_packet = usb_malloc();
  140. }
  141. }
  142. void static sysex_byte(uint8_t b)
  143. {
  144. // when buffer is full, send another chunk to handler.
  145. if (usb_midi_msg_sysex_len == USB_MIDI_SYSEX_MAX) {
  146. if (usb_midi_handleSysEx) {
  147. (*usb_midi_handleSysEx)(usb_midi_msg_sysex, usb_midi_msg_sysex_len, 0);
  148. usb_midi_msg_sysex_len = 0;
  149. }
  150. }
  151. if (usb_midi_msg_sysex_len < USB_MIDI_SYSEX_MAX) {
  152. usb_midi_msg_sysex[usb_midi_msg_sysex_len++] = b;
  153. }
  154. }
  155. int usb_midi_read(uint32_t channel)
  156. {
  157. uint32_t n, index, ch, type1, type2;
  158. if (!rx_packet) {
  159. if (!usb_configuration) return 0;
  160. rx_packet = usb_rx(MIDI_RX_ENDPOINT);
  161. if (!rx_packet) return 0;
  162. if (rx_packet->len == 0) {
  163. usb_free(rx_packet);
  164. rx_packet = NULL;
  165. return 0;
  166. }
  167. }
  168. index = rx_packet->index;
  169. //n = *(uint32_t *)(rx_packet->buf + index);
  170. n = ((uint32_t *)rx_packet->buf)[index/4];
  171. //serial_print("midi rx, n=");
  172. //serial_phex32(n);
  173. //serial_print("\n");
  174. index += 4;
  175. if (index < rx_packet->len) {
  176. rx_packet->index = index;
  177. } else {
  178. usb_free(rx_packet);
  179. rx_packet = usb_rx(MIDI_RX_ENDPOINT);
  180. }
  181. type1 = n & 15;
  182. type2 = (n >> 12) & 15;
  183. ch = ((n >> 8) & 15) + 1;
  184. if (type1 >= 0x08 && type1 <= 0x0E) {
  185. if (channel && channel != ch) {
  186. // ignore other channels when user wants single channel read
  187. return 0;
  188. }
  189. if (type1 == 0x08 && type2 == 0x08) {
  190. usb_midi_msg_type = 0; // 0 = Note off
  191. if (usb_midi_handleNoteOff)
  192. (*usb_midi_handleNoteOff)(ch, (n >> 16), (n >> 24));
  193. } else
  194. if (type1 == 0x09 && type2 == 0x09) {
  195. if ((n >> 24) > 0) {
  196. usb_midi_msg_type = 1; // 1 = Note on
  197. if (usb_midi_handleNoteOn)
  198. (*usb_midi_handleNoteOn)(ch, (n >> 16), (n >> 24));
  199. } else {
  200. usb_midi_msg_type = 0; // 0 = Note off
  201. if (usb_midi_handleNoteOff)
  202. (*usb_midi_handleNoteOff)(ch, (n >> 16), (n >> 24));
  203. }
  204. } else
  205. if (type1 == 0x0A && type2 == 0x0A) {
  206. usb_midi_msg_type = 2; // 2 = Poly Pressure
  207. if (usb_midi_handleVelocityChange)
  208. (*usb_midi_handleVelocityChange)(ch, (n >> 16), (n >> 24));
  209. } else
  210. if (type1 == 0x0B && type2 == 0x0B) {
  211. usb_midi_msg_type = 3; // 3 = Control Change
  212. if (usb_midi_handleControlChange)
  213. (*usb_midi_handleControlChange)(ch, (n >> 16), (n >> 24));
  214. } else
  215. if (type1 == 0x0C && type2 == 0x0C) {
  216. usb_midi_msg_type = 4; // 4 = Program Change
  217. if (usb_midi_handleProgramChange)
  218. (*usb_midi_handleProgramChange)(ch, (n >> 16));
  219. } else
  220. if (type1 == 0x0D && type2 == 0x0D) {
  221. usb_midi_msg_type = 5; // 5 = After Touch
  222. if (usb_midi_handleAfterTouch)
  223. (*usb_midi_handleAfterTouch)(ch, (n >> 16));
  224. } else
  225. if (type1 == 0x0E && type2 == 0x0E) {
  226. usb_midi_msg_type = 6; // 6 = Pitch Bend
  227. if (usb_midi_handlePitchChange)
  228. (*usb_midi_handlePitchChange)(ch,
  229. ((n >> 16) & 0x7F) | ((n >> 17) & 0x3F80));
  230. } else {
  231. return 0;
  232. }
  233. return_message:
  234. usb_midi_msg_channel = ch;
  235. usb_midi_msg_data1 = (n >> 16);
  236. usb_midi_msg_data2 = (n >> 24);
  237. return 1;
  238. }
  239. if (type1 == 0x04) {
  240. sysex_byte(n >> 8);
  241. sysex_byte(n >> 16);
  242. sysex_byte(n >> 24);
  243. return 0;
  244. }
  245. if (type1 >= 0x05 && type1 <= 0x07) {
  246. sysex_byte(n >> 8);
  247. if (type1 >= 0x06) sysex_byte(n >> 16);
  248. if (type1 == 0x07) sysex_byte(n >> 24);
  249. usb_midi_msg_data1 = usb_midi_msg_sysex_len;
  250. usb_midi_msg_sysex_len = 0;
  251. usb_midi_msg_type = 7; // 7 = Sys Ex
  252. if (usb_midi_handleSysEx)
  253. (*usb_midi_handleSysEx)(usb_midi_msg_sysex, usb_midi_msg_data1, 1);
  254. return 1;
  255. }
  256. if (type1 == 0x0F) {
  257. // TODO: does this need to be a full MIDI parser?
  258. // What software actually uses this message type in practice?
  259. if (usb_midi_msg_sysex_len > 0) {
  260. // From David Sorlien, dsorlien at gmail.com, http://axe4live.wordpress.com
  261. // OSX sometimes uses Single Byte Unparsed to
  262. // send bytes in the middle of a SYSEX message.
  263. sysex_byte(n >> 8);
  264. } else {
  265. // From Sebastian Tomczak, seb.tomczak at gmail.com
  266. // http://little-scale.blogspot.com/2011/08/usb-midi-game-boy-sync-for-16.html
  267. usb_midi_msg_type = 8;
  268. if (usb_midi_handleRealTimeSystem)
  269. (*usb_midi_handleRealTimeSystem)(n >> 8);
  270. goto return_message;
  271. }
  272. }
  273. if (type1 == 0x02) {
  274. // From Timm Schlegelmilch, karg.music at gmail.com
  275. // http://karg-music.blogspot.de/2015/06/receiving-midi-time-codes-over-usb-with.html
  276. usb_midi_msg_type = 9;
  277. if (usb_midi_handleTimeCodeQuarterFrame)
  278. (*usb_midi_handleTimeCodeQuarterFrame)(n >> 16);
  279. return 1;
  280. }
  281. return 0;
  282. }
  283. #endif // F_CPU
  284. #endif // MIDI_INTERFACE