Teensy 4.1 core updated for C++20
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

347 lines
11KB

  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2017 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, uint8_t cable)
  119. {
  120. // TODO: MIDI 2.5 lib automatically adds start and stop bytes
  121. cable = (cable & 0x0F) << 4;
  122. while (length > 3) {
  123. usb_midi_write_packed(0x04 | cable | (data[0] << 8) | (data[1] << 16) | (data[2] << 24));
  124. data += 3;
  125. length -= 3;
  126. }
  127. if (length == 3) {
  128. usb_midi_write_packed(0x07 | cable | (data[0] << 8) | (data[1] << 16) | (data[2] << 24));
  129. } else if (length == 2) {
  130. usb_midi_write_packed(0x06 | cable | (data[0] << 8) | (data[1] << 16));
  131. } else if (length == 1) {
  132. usb_midi_write_packed(0x05 | cable | (data[0] << 8));
  133. }
  134. }
  135. void usb_midi_flush_output(void)
  136. {
  137. if (tx_noautoflush == 0 && tx_packet && tx_packet->index > 0) {
  138. tx_packet->len = tx_packet->index * 4;
  139. usb_tx(MIDI_TX_ENDPOINT, tx_packet);
  140. tx_packet = usb_malloc();
  141. }
  142. }
  143. void static sysex_byte(uint8_t b)
  144. {
  145. // when buffer is full, send another chunk to handler.
  146. if (usb_midi_msg_sysex_len == USB_MIDI_SYSEX_MAX) {
  147. if (usb_midi_handleSysEx) {
  148. (*usb_midi_handleSysEx)(usb_midi_msg_sysex, usb_midi_msg_sysex_len, 0);
  149. usb_midi_msg_sysex_len = 0;
  150. }
  151. }
  152. if (usb_midi_msg_sysex_len < USB_MIDI_SYSEX_MAX) {
  153. usb_midi_msg_sysex[usb_midi_msg_sysex_len++] = b;
  154. }
  155. }
  156. uint32_t usb_midi_available(void)
  157. {
  158. uint32_t index;
  159. if (!rx_packet) {
  160. if (!usb_configuration) return 0;
  161. rx_packet = usb_rx(MIDI_RX_ENDPOINT);
  162. if (!rx_packet) return 0;
  163. if (rx_packet->len == 0) {
  164. usb_free(rx_packet);
  165. rx_packet = NULL;
  166. return 0;
  167. }
  168. }
  169. index = rx_packet->index;
  170. return rx_packet->len - index;
  171. }
  172. uint32_t usb_midi_read_message(void)
  173. {
  174. uint32_t n, index;
  175. if (!rx_packet) {
  176. if (!usb_configuration) return 0;
  177. rx_packet = usb_rx(MIDI_RX_ENDPOINT);
  178. if (!rx_packet) return 0;
  179. if (rx_packet->len == 0) {
  180. usb_free(rx_packet);
  181. rx_packet = NULL;
  182. return 0;
  183. }
  184. }
  185. index = rx_packet->index;
  186. n = ((uint32_t *)rx_packet->buf)[index/4];
  187. index += 4;
  188. if (index < rx_packet->len) {
  189. rx_packet->index = index;
  190. } else {
  191. usb_free(rx_packet);
  192. rx_packet = usb_rx(MIDI_RX_ENDPOINT);
  193. }
  194. return n;
  195. }
  196. int usb_midi_read(uint32_t channel)
  197. {
  198. uint32_t n, index, ch, type1, type2;
  199. if (!rx_packet) {
  200. if (!usb_configuration) return 0;
  201. rx_packet = usb_rx(MIDI_RX_ENDPOINT);
  202. if (!rx_packet) return 0;
  203. if (rx_packet->len == 0) {
  204. usb_free(rx_packet);
  205. rx_packet = NULL;
  206. return 0;
  207. }
  208. }
  209. index = rx_packet->index;
  210. //n = *(uint32_t *)(rx_packet->buf + index);
  211. n = ((uint32_t *)rx_packet->buf)[index/4];
  212. //serial_print("midi rx, n=");
  213. //serial_phex32(n);
  214. //serial_print("\n");
  215. index += 4;
  216. if (index < rx_packet->len) {
  217. rx_packet->index = index;
  218. } else {
  219. usb_free(rx_packet);
  220. rx_packet = usb_rx(MIDI_RX_ENDPOINT);
  221. }
  222. type1 = n & 15;
  223. type2 = (n >> 12) & 15;
  224. ch = ((n >> 8) & 15) + 1;
  225. if (type1 >= 0x08 && type1 <= 0x0E) {
  226. if (channel && channel != ch) {
  227. // ignore other channels when user wants single channel read
  228. return 0;
  229. }
  230. if (type1 == 0x08 && type2 == 0x08) {
  231. usb_midi_msg_type = 0; // 0 = Note off
  232. if (usb_midi_handleNoteOff)
  233. (*usb_midi_handleNoteOff)(ch, (n >> 16), (n >> 24));
  234. } else
  235. if (type1 == 0x09 && type2 == 0x09) {
  236. if ((n >> 24) > 0) {
  237. usb_midi_msg_type = 1; // 1 = Note on
  238. if (usb_midi_handleNoteOn)
  239. (*usb_midi_handleNoteOn)(ch, (n >> 16), (n >> 24));
  240. } else {
  241. usb_midi_msg_type = 0; // 0 = Note off
  242. if (usb_midi_handleNoteOff)
  243. (*usb_midi_handleNoteOff)(ch, (n >> 16), (n >> 24));
  244. }
  245. } else
  246. if (type1 == 0x0A && type2 == 0x0A) {
  247. usb_midi_msg_type = 2; // 2 = Poly Pressure
  248. if (usb_midi_handleVelocityChange)
  249. (*usb_midi_handleVelocityChange)(ch, (n >> 16), (n >> 24));
  250. } else
  251. if (type1 == 0x0B && type2 == 0x0B) {
  252. usb_midi_msg_type = 3; // 3 = Control Change
  253. if (usb_midi_handleControlChange)
  254. (*usb_midi_handleControlChange)(ch, (n >> 16), (n >> 24));
  255. } else
  256. if (type1 == 0x0C && type2 == 0x0C) {
  257. usb_midi_msg_type = 4; // 4 = Program Change
  258. if (usb_midi_handleProgramChange)
  259. (*usb_midi_handleProgramChange)(ch, (n >> 16));
  260. } else
  261. if (type1 == 0x0D && type2 == 0x0D) {
  262. usb_midi_msg_type = 5; // 5 = After Touch
  263. if (usb_midi_handleAfterTouch)
  264. (*usb_midi_handleAfterTouch)(ch, (n >> 16));
  265. } else
  266. if (type1 == 0x0E && type2 == 0x0E) {
  267. usb_midi_msg_type = 6; // 6 = Pitch Bend
  268. if (usb_midi_handlePitchChange)
  269. (*usb_midi_handlePitchChange)(ch,
  270. ((n >> 16) & 0x7F) | ((n >> 17) & 0x3F80));
  271. } else {
  272. return 0;
  273. }
  274. return_message:
  275. usb_midi_msg_channel = ch;
  276. usb_midi_msg_data1 = (n >> 16);
  277. usb_midi_msg_data2 = (n >> 24);
  278. return 1;
  279. }
  280. if (type1 == 0x04) {
  281. sysex_byte(n >> 8);
  282. sysex_byte(n >> 16);
  283. sysex_byte(n >> 24);
  284. return 0;
  285. }
  286. if (type1 >= 0x05 && type1 <= 0x07) {
  287. sysex_byte(n >> 8);
  288. if (type1 >= 0x06) sysex_byte(n >> 16);
  289. if (type1 == 0x07) sysex_byte(n >> 24);
  290. usb_midi_msg_data1 = usb_midi_msg_sysex_len;
  291. usb_midi_msg_sysex_len = 0;
  292. usb_midi_msg_type = 7; // 7 = Sys Ex
  293. if (usb_midi_handleSysEx)
  294. (*usb_midi_handleSysEx)(usb_midi_msg_sysex, usb_midi_msg_data1, 1);
  295. return 1;
  296. }
  297. if (type1 == 0x0F) {
  298. // TODO: does this need to be a full MIDI parser?
  299. // What software actually uses this message type in practice?
  300. if (usb_midi_msg_sysex_len > 0) {
  301. // From David Sorlien, dsorlien at gmail.com, http://axe4live.wordpress.com
  302. // OSX sometimes uses Single Byte Unparsed to
  303. // send bytes in the middle of a SYSEX message.
  304. sysex_byte(n >> 8);
  305. } else {
  306. // From Sebastian Tomczak, seb.tomczak at gmail.com
  307. // http://little-scale.blogspot.com/2011/08/usb-midi-game-boy-sync-for-16.html
  308. usb_midi_msg_type = 8;
  309. if (usb_midi_handleRealTimeSystem)
  310. (*usb_midi_handleRealTimeSystem)(n >> 8);
  311. goto return_message;
  312. }
  313. }
  314. if (type1 == 0x02) {
  315. // From Timm Schlegelmilch, karg.music at gmail.com
  316. // http://karg-music.blogspot.de/2015/06/receiving-midi-time-codes-over-usb-with.html
  317. usb_midi_msg_type = 9;
  318. if (usb_midi_handleTimeCodeQuarterFrame)
  319. (*usb_midi_handleTimeCodeQuarterFrame)(n >> 16);
  320. return 1;
  321. }
  322. return 0;
  323. }
  324. #endif // F_CPU
  325. #endif // MIDI_INTERFACE