Keyboard firmwares for Atmel AVR and Cortex-M
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.

MIDIToneGenerator.c 8.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2014.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. /*
  8. Copyright 2014 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  9. Permission to use, copy, modify, distribute, and sell this
  10. software and its documentation for any purpose is hereby granted
  11. without fee, provided that the above copyright notice appear in
  12. all copies and that both that the copyright notice and this
  13. permission notice and warranty disclaimer appear in supporting
  14. documentation, and that the name of the author not be used in
  15. advertising or publicity pertaining to distribution of the
  16. software without specific, written prior permission.
  17. The author disclaims all warranties with regard to this
  18. software, including all implied warranties of merchantability
  19. and fitness. In no event shall the author be liable for any
  20. special, indirect or consequential damages or any damages
  21. whatsoever resulting from loss of use, data or profits, whether
  22. in an action of contract, negligence or other tortious action,
  23. arising out of or in connection with the use or performance of
  24. this software.
  25. */
  26. /** \file
  27. *
  28. * Main source file for the MIDI demo. This file contains the main tasks of
  29. * the demo and is responsible for the initial application hardware configuration.
  30. */
  31. #include "MIDIToneGenerator.h"
  32. /** LUFA MIDI Class driver interface configuration and state information. This structure is
  33. * passed to all MIDI Class driver functions, so that multiple instances of the same class
  34. * within a device can be differentiated from one another.
  35. */
  36. USB_ClassInfo_MIDI_Device_t Keyboard_MIDI_Interface =
  37. {
  38. .Config =
  39. {
  40. .StreamingInterfaceNumber = INTERFACE_ID_AudioStream,
  41. .DataINEndpoint =
  42. {
  43. .Address = MIDI_STREAM_IN_EPADDR,
  44. .Size = MIDI_STREAM_EPSIZE,
  45. .Banks = 1,
  46. },
  47. .DataOUTEndpoint =
  48. {
  49. .Address = MIDI_STREAM_OUT_EPADDR,
  50. .Size = MIDI_STREAM_EPSIZE,
  51. .Banks = 1,
  52. },
  53. },
  54. };
  55. /** 8-bit 256 entry Sine Wave lookup table */
  56. static const uint8_t SineTable[256] =
  57. {
  58. 128, 131, 134, 137, 140, 143, 146, 149, 152, 156, 159, 162, 165, 168, 171, 174,
  59. 176, 179, 182, 185, 188, 191, 193, 196, 199, 201, 204, 206, 209, 211, 213, 216,
  60. 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 237, 239, 240, 242, 243, 245,
  61. 246, 247, 248, 249, 250, 251, 252, 252, 253, 254, 254, 255, 255, 255, 255, 255,
  62. 255, 255, 255, 255, 255, 255, 254, 254, 253, 252, 252, 251, 250, 249, 248, 247,
  63. 246, 245, 243, 242, 240, 239, 237, 236, 234, 232, 230, 228, 226, 224, 222, 220,
  64. 218, 216, 213, 211, 209, 206, 204, 201, 199, 196, 193, 191, 188, 185, 182, 179,
  65. 176, 174, 171, 168, 165, 162, 159, 156, 152, 149, 146, 143, 140, 137, 134, 131,
  66. 128, 124, 121, 118, 115, 112, 109, 106, 103, 99, 96, 93, 90, 87, 84, 81,
  67. 79, 76, 73, 70, 67, 64, 62, 59, 56, 54, 51, 49, 46, 44, 42, 39,
  68. 37, 35, 33, 31, 29, 27, 25, 23, 21, 19, 18, 16, 15, 13, 12, 10,
  69. 9, 8, 7, 6, 5, 4, 3, 3, 2, 1, 1, 0, 0, 0, 0, 0,
  70. 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 3, 4, 5, 6, 7, 8,
  71. 9, 10, 12, 13, 15, 16, 18, 19, 21, 23, 25, 27, 29, 31, 33, 35,
  72. 37, 39, 42, 44, 46, 49, 51, 54, 56, 59, 62, 64, 67, 70, 73, 76,
  73. 79, 81, 84, 87, 90, 93, 96, 99, 103, 106, 109, 112, 115, 118, 121, 124,
  74. };
  75. /** Array of structures describing each note being generated */
  76. static DDSNoteData NoteData[MAX_SIMULTANEOUS_NOTES];
  77. /** Main program entry point. This routine contains the overall program flow, including initial
  78. * setup of all components and the main program loop.
  79. */
  80. int main(void)
  81. {
  82. SetupHardware();
  83. LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
  84. GlobalInterruptEnable();
  85. for (;;)
  86. {
  87. MIDI_EventPacket_t ReceivedMIDIEvent;
  88. if (MIDI_Device_ReceiveEventPacket(&Keyboard_MIDI_Interface, &ReceivedMIDIEvent))
  89. {
  90. if ((ReceivedMIDIEvent.Event == MIDI_EVENT(0, MIDI_COMMAND_NOTE_ON)) && ((ReceivedMIDIEvent.Data1 & 0x0F) == 0))
  91. {
  92. DDSNoteData* LRUNoteStruct = &NoteData[0];
  93. /* Find a free entry in the note table to use for the note being turned on */
  94. for (uint8_t i = 0; i < MAX_SIMULTANEOUS_NOTES; i++)
  95. {
  96. /* Check if the note is unused */
  97. if (!(NoteData[i].Pitch))
  98. {
  99. /* If a note is unused, it's age is essentially infinite - always prefer unused note entries */
  100. LRUNoteStruct = &NoteData[i];
  101. break;
  102. }
  103. else if (NoteData[i].LRUAge >= LRUNoteStruct->LRUAge)
  104. {
  105. /* If an older entry that the current entry has been found, prefer overwriting that one */
  106. LRUNoteStruct = &NoteData[i];
  107. }
  108. NoteData[i].LRUAge++;
  109. }
  110. /* Update the oldest note entry with the new note data and reset its age */
  111. LRUNoteStruct->Pitch = ReceivedMIDIEvent.Data2;
  112. LRUNoteStruct->TableIncrement = (uint32_t)(BASE_INCREMENT * SCALE_FACTOR) +
  113. ((uint32_t)(BASE_INCREMENT * NOTE_OCTIVE_RATIO * SCALE_FACTOR) *
  114. (ReceivedMIDIEvent.Data2 - BASE_PITCH_INDEX));
  115. LRUNoteStruct->TablePosition = 0;
  116. LRUNoteStruct->LRUAge = 0;
  117. /* Turn on indicator LED to indicate note generation activity */
  118. LEDs_SetAllLEDs(LEDS_LED1);
  119. }
  120. else if ((ReceivedMIDIEvent.Event == MIDI_EVENT(0, MIDI_COMMAND_NOTE_OFF)) && ((ReceivedMIDIEvent.Data1 & 0x0F) == 0))
  121. {
  122. bool FoundActiveNote = false;
  123. /* Find the note in the note table to turn off */
  124. for (uint8_t i = 0; i < MAX_SIMULTANEOUS_NOTES; i++)
  125. {
  126. if (NoteData[i].Pitch == ReceivedMIDIEvent.Data2)
  127. NoteData[i].Pitch = 0;
  128. else if (NoteData[i].Pitch)
  129. FoundActiveNote = true;
  130. }
  131. /* If all notes off, turn off the indicator LED */
  132. if (!(FoundActiveNote))
  133. LEDs_SetAllLEDs(LEDS_NO_LEDS);
  134. }
  135. }
  136. MIDI_Device_USBTask(&Keyboard_MIDI_Interface);
  137. USB_USBTask();
  138. }
  139. }
  140. /** ISR to handle the reloading of the PWM timer with the next sample. */
  141. ISR(TIMER0_COMPA_vect, ISR_BLOCK)
  142. {
  143. uint16_t MixedSample = 0;
  144. /* Sum together all the active notes to form a single sample */
  145. for (uint8_t i = 0; i < MAX_SIMULTANEOUS_NOTES; i++)
  146. {
  147. /* A non-zero pitch indicates the note is active */
  148. if (NoteData[i].Pitch)
  149. {
  150. /* Use the top 8 bits of the table position as the sample table index */
  151. uint8_t TableIndex = (NoteData[i].TablePosition >> 24);
  152. /* Add the new tone sample to the accumulator and increment the table position */
  153. MixedSample += SineTable[TableIndex];
  154. NoteData[i].TablePosition += NoteData[i].TableIncrement;
  155. }
  156. }
  157. /* Output clamped mixed sample value to the PWM */
  158. OCR3A = (MixedSample <= 0xFF) ? MixedSample : 0xFF;
  159. }
  160. /** Configures the board hardware and chip peripherals for the demo's functionality. */
  161. void SetupHardware(void)
  162. {
  163. #if (ARCH == ARCH_AVR8)
  164. /* Disable watchdog if enabled by bootloader/fuses */
  165. MCUSR &= ~(1 << WDRF);
  166. wdt_disable();
  167. /* Disable clock division */
  168. clock_prescale_set(clock_div_1);
  169. #endif
  170. /* Hardware Initialization */
  171. LEDs_Init();
  172. USB_Init();
  173. /* Sample reload timer initialization */
  174. TIMSK0 = (1 << OCIE0A);
  175. OCR0A = (VIRTUAL_SAMPLE_TABLE_SIZE / 8);
  176. TCCR0A = (1 << WGM01); // CTC mode
  177. TCCR0B = (1 << CS01); // Fcpu/8 speed
  178. /* Set speaker as output */
  179. DDRC |= (1 << 6);
  180. /* PWM speaker timer initialization */
  181. TCCR3A = ((1 << WGM31) | (1 << COM3A1) | (1 << COM3A0)); // Set on match, clear on TOP
  182. TCCR3B = ((1 << WGM32) | (1 << CS30)); // Fast 8-Bit PWM, Fcpu speed
  183. }
  184. /** Event handler for the library USB Connection event. */
  185. void EVENT_USB_Device_Connect(void)
  186. {
  187. LEDs_SetAllLEDs(LEDMASK_USB_ENUMERATING);
  188. /* Set speaker as output */
  189. DDRC |= (1 << 6);
  190. }
  191. /** Event handler for the library USB Disconnection event. */
  192. void EVENT_USB_Device_Disconnect(void)
  193. {
  194. LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
  195. /* Disable any notes currently being played */
  196. for (uint8_t i = 0; i < MAX_SIMULTANEOUS_NOTES; i++)
  197. NoteData[i].Pitch = 0;
  198. /* Set speaker as input to reduce current draw */
  199. DDRC &= ~(1 << 6);
  200. }
  201. /** Event handler for the library USB Configuration Changed event. */
  202. void EVENT_USB_Device_ConfigurationChanged(void)
  203. {
  204. bool ConfigSuccess = true;
  205. ConfigSuccess &= MIDI_Device_ConfigureEndpoints(&Keyboard_MIDI_Interface);
  206. LEDs_SetAllLEDs(ConfigSuccess ? LEDMASK_USB_READY : LEDMASK_USB_ERROR);
  207. }
  208. /** Event handler for the library USB Control Request event. */
  209. void EVENT_USB_Device_ControlRequest(void)
  210. {
  211. MIDI_Device_ProcessControlRequest(&Keyboard_MIDI_Interface);
  212. }