Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

122 lines
5.1KB

  1. /* Audio Library for Teensy 3.X
  2. * Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com
  3. *
  4. * Development of this audio library was funded by PJRC.COM, LLC by sales of
  5. * Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop
  6. * open source software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #ifndef control_sgtl5000_h_
  27. #define control_sgtl5000_h_
  28. #include "AudioControl.h"
  29. class AudioControlSGTL5000 : public AudioControl
  30. {
  31. public:
  32. bool enable(void);
  33. bool disable(void) { return false; }
  34. bool volume(float n) { return volumeInteger(n * 129 + 0.499); }
  35. bool inputLevel(float n) {return false;}
  36. bool muteHeadphone(void) { return write(0x0024, ana_ctrl | (1<<4)); }
  37. bool unmuteHeadphone(void) { return write(0x0024, ana_ctrl & ~(1<<4)); }
  38. bool muteLineout(void) { return write(0x0024, ana_ctrl | (1<<8)); }
  39. bool unmuteLineout(void) { return write(0x0024, ana_ctrl & ~(1<<8)); }
  40. bool inputSelect(int n) {
  41. if (n == AUDIO_INPUT_LINEIN) {
  42. return write(0x0020, 0x055) // +7.5dB gain (1.3Vp-p full scale)
  43. && write(0x0024, ana_ctrl | (1<<2)); // enable linein
  44. } else if (n == AUDIO_INPUT_MIC) {
  45. return write(0x002A, 0x0173) // mic preamp gain = +40dB
  46. && write(0x0020, 0x088) // input gain +12dB (is this enough?)
  47. && write(0x0024, ana_ctrl & ~(1<<2)); // enable mic
  48. } else {
  49. return false;
  50. }
  51. }
  52. bool volume(float left, float right);
  53. bool micGain(unsigned int dB);
  54. bool lineInLevel(uint8_t n) { return lineInLevel(n, n); }
  55. bool lineInLevel(uint8_t left, uint8_t right);
  56. unsigned short lineOutLevel(uint8_t n);
  57. unsigned short lineOutLevel(uint8_t left, uint8_t right);
  58. unsigned short dacVolume(float n);
  59. unsigned short dacVolume(float left, float right);
  60. unsigned short adcHighPassFilterEnable(void);
  61. unsigned short adcHighPassFilterFreeze(void);
  62. unsigned short adcHighPassFilterDisable(void);
  63. unsigned short audioPreProcessorEnable(void);
  64. unsigned short audioPostProcessorEnable(void);
  65. unsigned short audioProcessorDisable(void);
  66. unsigned short eqFilterCount(uint8_t n);
  67. unsigned short eqSelect(uint8_t n);
  68. unsigned short eqBand(uint8_t bandNum, float n);
  69. void eqBands(float bass, float mid_bass, float midrange, float mid_treble, float treble);
  70. void eqBands(float bass, float treble);
  71. void eqFilter(uint8_t filterNum, int *filterParameters);
  72. unsigned short autoVolumeControl(uint8_t maxGain, uint8_t lbiResponse, uint8_t hardLimit, float threshold, float attack, float decay);
  73. unsigned short autoVolumeEnable(void);
  74. unsigned short autoVolumeDisable(void);
  75. unsigned short enhanceBass(float lr_lev, float bass_lev);
  76. unsigned short enhanceBass(float lr_lev, float bass_lev, uint8_t hpf_bypass, uint8_t cutoff);
  77. unsigned short enhanceBassEnable(void);
  78. unsigned short enhanceBassDisable(void);
  79. unsigned short surroundSound(uint8_t width);
  80. unsigned short surroundSound(uint8_t width, uint8_t select);
  81. unsigned short surroundSoundEnable(void);
  82. unsigned short surroundSoundDisable(void);
  83. void killAutomation(void) { semi_automated=false; }
  84. protected:
  85. bool muted;
  86. bool volumeInteger(unsigned int n); // range: 0x00 to 0x80
  87. uint16_t ana_ctrl;
  88. unsigned char calcVol(float n, unsigned char range);
  89. unsigned int read(unsigned int reg);
  90. bool write(unsigned int reg, unsigned int val);
  91. unsigned int modify(unsigned int reg, unsigned int val, unsigned int iMask);
  92. unsigned short dap_audio_eq_band(uint8_t bandNum, float n);
  93. private:
  94. bool semi_automated;
  95. void automate(uint8_t dap, uint8_t eq);
  96. void automate(uint8_t dap, uint8_t eq, uint8_t filterCount);
  97. };
  98. //For Filter Type: 0 = LPF, 1 = HPF, 2 = BPF, 3 = NOTCH, 4 = PeakingEQ, 5 = LowShelf, 6 = HighShelf
  99. #define FILTER_LOPASS 0
  100. #define FILTER_HIPASS 1
  101. #define FILTER_BANDPASS 2
  102. #define FILTER_NOTCH 3
  103. #define FILTER_PARAEQ 4
  104. #define FILTER_LOSHELF 5
  105. #define FILTER_HISHELF 6
  106. //For frequency adjustment
  107. #define FLAT_FREQUENCY 0
  108. #define PARAMETRIC_EQUALIZER 1
  109. #define TONE_CONTROLS 2
  110. #define GRAPHIC_EQUALIZER 3
  111. void calcBiquad(uint8_t filtertype, float fC, float dB_Gain, float Q, uint32_t quantization_unit, uint32_t fS, int *coef);
  112. #endif