upload
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

keymap_midi.h 9.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /*
  2. Copyright 2015 Jack Humbert <[email protected]>
  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. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #ifndef KEYMAP_MIDI_H
  15. #define KEYMAP_MIDI_H
  16. #include <lufa.h>
  17. #define MIDI(n) ((n) | 0x6000)
  18. #define MIDI12 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000
  19. #define CHNL(note, channel) (note + (channel << 8))
  20. #define SCALE (int8_t []){ 0 + (12*0), 2 + (12*0), 4 + (12*0), 5 + (12*0), 7 + (12*0), 9 + (12*0), 11 + (12*0), \
  21. 0 + (12*1), 2 + (12*1), 4 + (12*1), 5 + (12*1), 7 + (12*1), 9 + (12*1), 11 + (12*1), \
  22. 0 + (12*2), 2 + (12*2), 4 + (12*2), 5 + (12*2), 7 + (12*2), 9 + (12*2), 11 + (12*2), \
  23. 0 + (12*3), 2 + (12*3), 4 + (12*3), 5 + (12*3), 7 + (12*3), 9 + (12*3), 11 + (12*3), \
  24. 0 + (12*4), 2 + (12*4), 4 + (12*4), 5 + (12*4), 7 + (12*4), 9 + (12*4), 11 + (12*4), }
  25. #define N_CN1 (0x600C + (12 * -1) + 0 )
  26. #define N_CN1S (0x600C + (12 * -1) + 1 )
  27. #define N_DN1F (0x600C + (12 * -1) + 1 )
  28. #define N_DN1 (0x600C + (12 * -1) + 2 )
  29. #define N_DN1S (0x600C + (12 * -1) + 3 )
  30. #define N_EN1F (0x600C + (12 * -1) + 3 )
  31. #define N_EN1 (0x600C + (12 * -1) + 4 )
  32. #define N_FN1 (0x600C + (12 * -1) + 5 )
  33. #define N_FN1S (0x600C + (12 * -1) + 6 )
  34. #define N_GN1F (0x600C + (12 * -1) + 6 )
  35. #define N_GN1 (0x600C + (12 * -1) + 7 )
  36. #define N_GN1S (0x600C + (12 * -1) + 8 )
  37. #define N_AN1F (0x600C + (12 * -1) + 8 )
  38. #define N_AN1 (0x600C + (12 * -1) + 9 )
  39. #define N_AN1S (0x600C + (12 * -1) + 10)
  40. #define N_BN1F (0x600C + (12 * -1) + 10)
  41. #define N_BN1 (0x600C + (12 * -1) + 11)
  42. #define N_C0 (0x600C + (12 * 0) + 0 )
  43. #define N_C0S (0x600C + (12 * 0) + 1 )
  44. #define N_D0F (0x600C + (12 * 0) + 1 )
  45. #define N_D0 (0x600C + (12 * 0) + 2 )
  46. #define N_D0S (0x600C + (12 * 0) + 3 )
  47. #define N_E0F (0x600C + (12 * 0) + 3 )
  48. #define N_E0 (0x600C + (12 * 0) + 4 )
  49. #define N_F0 (0x600C + (12 * 0) + 5 )
  50. #define N_F0S (0x600C + (12 * 0) + 6 )
  51. #define N_G0F (0x600C + (12 * 0) + 6 )
  52. #define N_G0 (0x600C + (12 * 0) + 7 )
  53. #define N_G0S (0x600C + (12 * 0) + 8 )
  54. #define N_A0F (0x600C + (12 * 0) + 8 )
  55. #define N_A0 (0x600C + (12 * 0) + 9 )
  56. #define N_A0S (0x600C + (12 * 0) + 10)
  57. #define N_B0F (0x600C + (12 * 0) + 10)
  58. #define N_B0 (0x600C + (12 * 0) + 11)
  59. #define N_C1 (0x600C + (12 * 1) + 0 )
  60. #define N_C1S (0x600C + (12 * 1) + 1 )
  61. #define N_D1F (0x600C + (12 * 1) + 1 )
  62. #define N_D1 (0x600C + (12 * 1) + 2 )
  63. #define N_D1S (0x600C + (12 * 1) + 3 )
  64. #define N_E1F (0x600C + (12 * 1) + 3 )
  65. #define N_E1 (0x600C + (12 * 1) + 4 )
  66. #define N_F1 (0x600C + (12 * 1) + 5 )
  67. #define N_F1S (0x600C + (12 * 1) + 6 )
  68. #define N_G1F (0x600C + (12 * 1) + 6 )
  69. #define N_G1 (0x600C + (12 * 1) + 7 )
  70. #define N_G1S (0x600C + (12 * 1) + 8 )
  71. #define N_A1F (0x600C + (12 * 1) + 8 )
  72. #define N_A1 (0x600C + (12 * 1) + 9 )
  73. #define N_A1S (0x600C + (12 * 1) + 10)
  74. #define N_B1F (0x600C + (12 * 1) + 10)
  75. #define N_B1 (0x600C + (12 * 1) + 11)
  76. #define N_C2 (0x600C + (12 * 2) + 0 )
  77. #define N_C2S (0x600C + (12 * 2) + 1 )
  78. #define N_D2F (0x600C + (12 * 2) + 1 )
  79. #define N_D2 (0x600C + (12 * 2) + 2 )
  80. #define N_D2S (0x600C + (12 * 2) + 3 )
  81. #define N_E2F (0x600C + (12 * 2) + 3 )
  82. #define N_E2 (0x600C + (12 * 2) + 4 )
  83. #define N_F2 (0x600C + (12 * 2) + 5 )
  84. #define N_F2S (0x600C + (12 * 2) + 6 )
  85. #define N_G2F (0x600C + (12 * 2) + 6 )
  86. #define N_G2 (0x600C + (12 * 2) + 7 )
  87. #define N_G2S (0x600C + (12 * 2) + 8 )
  88. #define N_A2F (0x600C + (12 * 2) + 8 )
  89. #define N_A2 (0x600C + (12 * 2) + 9 )
  90. #define N_A2S (0x600C + (12 * 2) + 10)
  91. #define N_B2F (0x600C + (12 * 2) + 10)
  92. #define N_B2 (0x600C + (12 * 2) + 11)
  93. #define N_C3 (0x600C + (12 * 3) + 0 )
  94. #define N_C3S (0x600C + (12 * 3) + 1 )
  95. #define N_D3F (0x600C + (12 * 3) + 1 )
  96. #define N_D3 (0x600C + (12 * 3) + 2 )
  97. #define N_D3S (0x600C + (12 * 3) + 3 )
  98. #define N_E3F (0x600C + (12 * 3) + 3 )
  99. #define N_E3 (0x600C + (12 * 3) + 4 )
  100. #define N_F3 (0x600C + (12 * 3) + 5 )
  101. #define N_F3S (0x600C + (12 * 3) + 6 )
  102. #define N_G3F (0x600C + (12 * 3) + 6 )
  103. #define N_G3 (0x600C + (12 * 3) + 7 )
  104. #define N_G3S (0x600C + (12 * 3) + 8 )
  105. #define N_A3F (0x600C + (12 * 3) + 8 )
  106. #define N_A3 (0x600C + (12 * 3) + 9 )
  107. #define N_A3S (0x600C + (12 * 3) + 10)
  108. #define N_B3F (0x600C + (12 * 3) + 10)
  109. #define N_B3 (0x600C + (12 * 3) + 11)
  110. #define N_C4 (0x600C + (12 * 4) + 0 )
  111. #define N_C4S (0x600C + (12 * 4) + 1 )
  112. #define N_D4F (0x600C + (12 * 4) + 1 )
  113. #define N_D4 (0x600C + (12 * 4) + 2 )
  114. #define N_D4S (0x600C + (12 * 4) + 3 )
  115. #define N_E4F (0x600C + (12 * 4) + 3 )
  116. #define N_E4 (0x600C + (12 * 4) + 4 )
  117. #define N_F4 (0x600C + (12 * 4) + 5 )
  118. #define N_F4S (0x600C + (12 * 4) + 6 )
  119. #define N_G4F (0x600C + (12 * 4) + 6 )
  120. #define N_G4 (0x600C + (12 * 4) + 7 )
  121. #define N_G4S (0x600C + (12 * 4) + 8 )
  122. #define N_A4F (0x600C + (12 * 4) + 8 )
  123. #define N_A4 (0x600C + (12 * 4) + 9 )
  124. #define N_A4S (0x600C + (12 * 4) + 10)
  125. #define N_B4F (0x600C + (12 * 4) + 10)
  126. #define N_B4 (0x600C + (12 * 4) + 11)
  127. #define N_C5 (0x600C + (12 * 5) + 0 )
  128. #define N_C5S (0x600C + (12 * 5) + 1 )
  129. #define N_D5F (0x600C + (12 * 5) + 1 )
  130. #define N_D5 (0x600C + (12 * 5) + 2 )
  131. #define N_D5S (0x600C + (12 * 5) + 3 )
  132. #define N_E5F (0x600C + (12 * 5) + 3 )
  133. #define N_E5 (0x600C + (12 * 5) + 4 )
  134. #define N_F5 (0x600C + (12 * 5) + 5 )
  135. #define N_F5S (0x600C + (12 * 5) + 6 )
  136. #define N_G5F (0x600C + (12 * 5) + 6 )
  137. #define N_G5 (0x600C + (12 * 5) + 7 )
  138. #define N_G5S (0x600C + (12 * 5) + 8 )
  139. #define N_A5F (0x600C + (12 * 5) + 8 )
  140. #define N_A5 (0x600C + (12 * 5) + 9 )
  141. #define N_A5S (0x600C + (12 * 5) + 10)
  142. #define N_B5F (0x600C + (12 * 5) + 10)
  143. #define N_B5 (0x600C + (12 * 5) + 11)
  144. #define N_C6 (0x600C + (12 * 6) + 0 )
  145. #define N_C6S (0x600C + (12 * 6) + 1 )
  146. #define N_D6F (0x600C + (12 * 6) + 1 )
  147. #define N_D6 (0x600C + (12 * 6) + 2 )
  148. #define N_D6S (0x600C + (12 * 6) + 3 )
  149. #define N_E6F (0x600C + (12 * 6) + 3 )
  150. #define N_E6 (0x600C + (12 * 6) + 4 )
  151. #define N_F6 (0x600C + (12 * 6) + 5 )
  152. #define N_F6S (0x600C + (12 * 6) + 6 )
  153. #define N_G6F (0x600C + (12 * 6) + 6 )
  154. #define N_G6 (0x600C + (12 * 6) + 7 )
  155. #define N_G6S (0x600C + (12 * 6) + 8 )
  156. #define N_A6F (0x600C + (12 * 6) + 8 )
  157. #define N_A6 (0x600C + (12 * 6) + 9 )
  158. #define N_A6S (0x600C + (12 * 6) + 10)
  159. #define N_B6F (0x600C + (12 * 6) + 10)
  160. #define N_B6 (0x600C + (12 * 6) + 11)
  161. #define N_C7 (0x600C + (12 * 7) + 0 )
  162. #define N_C7S (0x600C + (12 * 7) + 1 )
  163. #define N_D7F (0x600C + (12 * 7) + 1 )
  164. #define N_D7 (0x600C + (12 * 7) + 2 )
  165. #define N_D7S (0x600C + (12 * 7) + 3 )
  166. #define N_E7F (0x600C + (12 * 7) + 3 )
  167. #define N_E7 (0x600C + (12 * 7) + 4 )
  168. #define N_F7 (0x600C + (12 * 7) + 5 )
  169. #define N_F7S (0x600C + (12 * 7) + 6 )
  170. #define N_G7F (0x600C + (12 * 7) + 6 )
  171. #define N_G7 (0x600C + (12 * 7) + 7 )
  172. #define N_G7S (0x600C + (12 * 7) + 8 )
  173. #define N_A7F (0x600C + (12 * 7) + 8 )
  174. #define N_A7 (0x600C + (12 * 7) + 9 )
  175. #define N_A7S (0x600C + (12 * 7) + 10)
  176. #define N_B7F (0x600C + (12 * 7) + 10)
  177. #define N_B7 (0x600C + (12 * 7) + 11)
  178. #define N_C8 (0x600C + (12 * 8) + 0 )
  179. #define N_C8S (0x600C + (12 * 8) + 1 )
  180. #define N_D8F (0x600C + (12 * 8) + 1 )
  181. #define N_D8 (0x600C + (12 * 8) + 2 )
  182. #define N_D8S (0x600C + (12 * 8) + 3 )
  183. #define N_E8F (0x600C + (12 * 8) + 3 )
  184. #define N_E8 (0x600C + (12 * 8) + 4 )
  185. #define N_F8 (0x600C + (12 * 8) + 5 )
  186. #define N_F8S (0x600C + (12 * 8) + 6 )
  187. #define N_G8F (0x600C + (12 * 8) + 6 )
  188. #define N_G8 (0x600C + (12 * 8) + 7 )
  189. #define N_G8S (0x600C + (12 * 8) + 8 )
  190. #define N_A8F (0x600C + (12 * 8) + 8 )
  191. #define N_A8 (0x600C + (12 * 8) + 9 )
  192. #define N_A8S (0x600C + (12 * 8) + 10)
  193. #define N_B8F (0x600C + (12 * 8) + 10)
  194. #define N_B8 (0x600C + (12 * 8) + 11)
  195. #define N_C8 (0x600C + (12 * 8) + 0 )
  196. #define N_C8S (0x600C + (12 * 8) + 1 )
  197. #define N_D8F (0x600C + (12 * 8) + 1 )
  198. #define N_D8 (0x600C + (12 * 8) + 2 )
  199. #define N_D8S (0x600C + (12 * 8) + 3 )
  200. #define N_E8F (0x600C + (12 * 8) + 3 )
  201. #define N_E8 (0x600C + (12 * 8) + 4 )
  202. #define N_F8 (0x600C + (12 * 8) + 5 )
  203. #define N_F8S (0x600C + (12 * 8) + 6 )
  204. #define N_G8F (0x600C + (12 * 8) + 6 )
  205. #define N_G8 (0x600C + (12 * 8) + 7 )
  206. #define N_G8S (0x600C + (12 * 8) + 8 )
  207. #define N_A8F (0x600C + (12 * 8) + 8 )
  208. #define N_A8 (0x600C + (12 * 8) + 9 )
  209. #define N_A8S (0x600C + (12 * 8) + 10)
  210. #define N_B8F (0x600C + (12 * 8) + 10)
  211. #define N_B8 (0x600C + (12 * 8) + 11)
  212. #endif