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.

147 lines
4.4KB

  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. #include "control_wm8731.h"
  27. #include "Wire.h"
  28. #define WM8731_I2C_ADDR 0x1A
  29. //#define WM8731_I2C_ADDR 0x1B
  30. #define WM8731_REG_LLINEIN 0
  31. #define WM8731_REG_RLINEIN 1
  32. #define WM8731_REG_LHEADOUT 2
  33. #define WM8731_REG_RHEADOUT 3
  34. #define WM8731_REG_ANALOG 4
  35. #define WM8731_REG_DIGITAL 5
  36. #define WM8731_REG_POWERDOWN 6
  37. #define WM8731_REG_INTERFACE 7
  38. #define WM8731_REG_SAMPLING 8
  39. #define WM8731_REG_ACTIVE 9
  40. #define WM8731_REG_RESET 15
  41. bool AudioControlWM8731::enable(void)
  42. {
  43. Wire.begin();
  44. delay(5);
  45. //write(WM8731_REG_RESET, 0);
  46. write(WM8731_REG_INTERFACE, 0x02); // I2S, 16 bit, MCLK slave
  47. write(WM8731_REG_SAMPLING, 0x20); // 256*Fs, 44.1 kHz, MCLK/1
  48. // In order to prevent pops, the DAC should first be soft-muted (DACMU),
  49. // the output should then be de-selected from the line and headphone output
  50. // (DACSEL), then the DAC powered down (DACPD).
  51. write(WM8731_REG_DIGITAL, 0x08); // DAC soft mute
  52. write(WM8731_REG_ANALOG, 0x00); // disable all
  53. write(WM8731_REG_POWERDOWN, 0x00); // codec powerdown
  54. write(WM8731_REG_LHEADOUT, 0x80); // volume off
  55. write(WM8731_REG_RHEADOUT, 0x80);
  56. delay(100); // how long to power up?
  57. write(WM8731_REG_ACTIVE, 1);
  58. delay(5);
  59. write(WM8731_REG_DIGITAL, 0x00); // DAC unmuted
  60. write(WM8731_REG_ANALOG, 0x10); // DAC selected
  61. return true;
  62. }
  63. bool AudioControlWM8731::write(unsigned int reg, unsigned int val)
  64. {
  65. Wire.beginTransmission(WM8731_I2C_ADDR);
  66. Wire.write((reg << 1) | ((val >> 8) & 1));
  67. Wire.write(val & 0xFF);
  68. Wire.endTransmission();
  69. return true;
  70. }
  71. bool AudioControlWM8731::volumeInteger(unsigned int n)
  72. {
  73. // n = 127 for max volume (+6 dB)
  74. // n = 48 for min volume (-73 dB)
  75. // n = 0 to 47 for mute
  76. if (n > 127) n = 127;
  77. //Serial.print("volumeInteger, n = ");
  78. //Serial.println(n);
  79. write(WM8731_REG_LHEADOUT, n | 0x180);
  80. write(WM8731_REG_RHEADOUT, n | 0x80);
  81. return true;
  82. }
  83. bool AudioControlWM8731::inputLevel(float n)
  84. {
  85. // range is 0x00 (min) - 0x1F (max)
  86. int _level = int(n * 31.f);
  87. _level = _level > 0x1F ? 0x1F : _level;
  88. write(WM8731_REG_LLINEIN, _level);
  89. write(WM8731_REG_RLINEIN, _level);
  90. return true;
  91. }
  92. /******************************************************************/
  93. bool AudioControlWM8731master::enable(void)
  94. {
  95. Wire.begin();
  96. delay(5);
  97. //write(WM8731_REG_RESET, 0);
  98. write(WM8731_REG_INTERFACE, 0x42); // I2S, 16 bit, MCLK master
  99. write(WM8731_REG_SAMPLING, 0x20); // 256*Fs, 44.1 kHz, MCLK/1
  100. // In order to prevent pops, the DAC should first be soft-muted (DACMU),
  101. // the output should then be de-selected from the line and headphone output
  102. // (DACSEL), then the DAC powered down (DACPD).
  103. write(WM8731_REG_DIGITAL, 0x08); // DAC soft mute
  104. write(WM8731_REG_ANALOG, 0x00); // disable all
  105. write(WM8731_REG_POWERDOWN, 0x00); // codec powerdown
  106. write(WM8731_REG_LHEADOUT, 0x80); // volume off
  107. write(WM8731_REG_RHEADOUT, 0x80);
  108. delay(100); // how long to power up?
  109. write(WM8731_REG_ACTIVE, 1);
  110. delay(5);
  111. write(WM8731_REG_DIGITAL, 0x00); // DAC unmuted
  112. write(WM8731_REG_ANALOG, 0x10); // DAC selected
  113. return true;
  114. }