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.h 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. * Header file for AudioOutput.c.
  29. */
  30. #ifndef _AUDIO_OUTPUT_H_
  31. #define _AUDIO_OUTPUT_H_
  32. /* Includes: */
  33. #include <avr/io.h>
  34. #include <avr/wdt.h>
  35. #include <avr/power.h>
  36. #include <avr/pgmspace.h>
  37. #include <avr/interrupt.h>
  38. #include <stdbool.h>
  39. #include "Descriptors.h"
  40. #include "Config/AppConfig.h"
  41. #include <LUFA/Drivers/Board/LEDs.h>
  42. #include <LUFA/Drivers/USB/USB.h>
  43. #include <LUFA/Platform/Platform.h>
  44. /* Macros: */
  45. /** LED mask for the library LED driver, to indicate that the USB interface is not ready. */
  46. #define LEDMASK_USB_NOTREADY LEDS_LED1
  47. /** LED mask for the library LED driver, to indicate that the USB interface is enumerating. */
  48. #define LEDMASK_USB_ENUMERATING (LEDS_LED2 | LEDS_LED3)
  49. /** LED mask for the library LED driver, to indicate that the USB interface is ready. */
  50. #define LEDMASK_USB_READY (LEDS_LED2 | LEDS_LED4)
  51. /** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */
  52. #define LEDMASK_USB_ERROR (LEDS_LED1 | LEDS_LED3)
  53. /** Scale factor used to convert the floating point frequencies and ratios into a fixed point number */
  54. #define SCALE_FACTOR 65536
  55. /** Base (lowest) allowable MIDI note frequency */
  56. #define BASE_FREQUENCY 27.5
  57. /** Ratio between each note in an octave */
  58. #define NOTE_OCTIVE_RATIO 1.05946
  59. /** Lowest valid MIDI pitch index */
  60. #define BASE_PITCH_INDEX 21
  61. /** Number of samples in the virtual sample table (can be expanded to lower maximum frequency, but allow for
  62. * more simultaneous notes due to the reduced amount of processing time needed when the samples are spaced out)
  63. */
  64. #define VIRTUAL_SAMPLE_TABLE_SIZE 512
  65. /** Sample table increments per period for the base MIDI note frequency */
  66. #define BASE_INCREMENT (((F_CPU / VIRTUAL_SAMPLE_TABLE_SIZE / 2) / BASE_FREQUENCY))
  67. /* Type Defines: */
  68. typedef struct
  69. {
  70. uint8_t LRUAge;
  71. uint8_t Pitch;
  72. uint32_t TableIncrement;
  73. uint32_t TablePosition;
  74. } DDSNoteData;
  75. /* Function Prototypes: */
  76. void SetupHardware(void);
  77. void EVENT_USB_Device_Connect(void);
  78. void EVENT_USB_Device_Disconnect(void);
  79. void EVENT_USB_Device_ConfigurationChanged(void);
  80. void EVENT_USB_Device_UnhandledControlRequest(void);
  81. #endif