選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

control_wm8731.cpp 4.6KB

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