forked from W4D/soundcube-firmware
ui and sound together is almost ok but not quite there. occasional xruns
This commit is contained in:
@ -1,14 +1,291 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <Wire.h>
|
||||
|
||||
class TLV320AIC3104{
|
||||
#ifndef DEBUG
|
||||
#define DEBUG false
|
||||
#endif
|
||||
|
||||
// class TLV320AIC3204_Settings{
|
||||
|
||||
// public:
|
||||
// TwoWire *wire;
|
||||
// uint8_t i2cAddress = 0x18;
|
||||
|
||||
// ClockSettings1 clock_settings_1 = ClockSettings1(i2cAddress, wire);
|
||||
|
||||
// };
|
||||
|
||||
class TLV320AIC3204{
|
||||
|
||||
public:
|
||||
TLV320AIC3104(){}
|
||||
TLV320AIC3104(TwoWire &wire) : i2c(wire) {}
|
||||
TLV320AIC3204() : wire(&Wire) {}
|
||||
TLV320AIC3204(TwoWire *wire) : wire(wire) {}
|
||||
|
||||
void begin(){init();};
|
||||
void begin(TwoWire *_wire) {
|
||||
wire = _wire;
|
||||
init();
|
||||
}
|
||||
void begin(uint8_t i2cAddress, TwoWire *_wire) {
|
||||
i2cAddress = i2cAddress;
|
||||
wire = _wire;
|
||||
init();
|
||||
}
|
||||
|
||||
void init(){
|
||||
// GENERAL
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x01, 0x01); // soft reset
|
||||
cw(0x1b, 0b00000000); // select I2S with 16 bit word length
|
||||
cw(0x1d, 0b00000000); // disable loopback
|
||||
|
||||
// POWER and CM
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x01, 0b00001000); // disable weak (crude) AVdd connection to DVdd
|
||||
cw(0x02, 0b00000001); // enable internal AVdd LDO and enable analog blocks
|
||||
cw(0x09, 0b00001100); // power up LOL, LOR, power down MAL, MAR, HPL, HPR
|
||||
cw(0x0a, 0b00001000); // set full chip CM to 0.75V
|
||||
cw(0x47, 0b00110011); // analog input quick charge time 1.6ms
|
||||
|
||||
// ROUTING
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x34, 0b10000000); // LEFT MICPGA P route IN1L to LEFT_P with 40k input impedance
|
||||
cw(0x36, 0b10000000); // LEFT MICPGA M route CM to LEFT_M with 20k input impedance
|
||||
//cw(0x36, 0b00000011); // LEFT MICPGA M route CM to LEFT_M with 20k input impedance
|
||||
cw(0x37, 0b10000000); // RIGHT MICPGA P route IN1R to RIGHT_P with 20k input impedance
|
||||
cw(0x39, 0b10000000); // RIGHT MICPGA M route CM to RIGHT_M with 20k input impedance
|
||||
//cw(0x39, 0b00000011); // RIGHT MICPGA M route CM to RIGHT_M with 20k input impedance
|
||||
cw(0x3a, 0b00111100); // connect IN2, IN3 weakly to CM
|
||||
|
||||
// GAIN
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x3b, 0b00000000); // unmute left MICPGA, set gain to 0db
|
||||
cw(0x3c, 0b00000000); // unmute right MICPGA, set gain to 0db
|
||||
|
||||
// VOLUME
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x16, 0b01110101); // MUTE IN1L to HPL
|
||||
cw(0x17, 0b01110101); // MUTE IN1R to HPR
|
||||
|
||||
// ADC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x12, 0x81); // NADC 1
|
||||
cw(0x13, 0x82); // MADC 2
|
||||
cw(0x14, 0b10000000); // OSR ADC 128
|
||||
//cw(0x14, 0b01000000); // OSR ADC 128
|
||||
cw(0x3d, 0b00000001); // ADC PRB_R3 = 11, PRB_R2 = 10, PRB_R1 = 01
|
||||
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x3d, 0b00000000); // ADC PTM_R4
|
||||
|
||||
// DAC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x0b, 0x81); // NDAC 1
|
||||
cw(0x0c, 0x82); // MDAC 2
|
||||
cw(0x0d, 0x00); // OSR DAC 128
|
||||
cw(0x0e, 0x80); // OSR DAC 128
|
||||
cw(0x1b, 0b00000000); // word length 16bits
|
||||
cw(0x3c, 0b00000001); // PRB_P3
|
||||
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x7b, 0b00000001); // set REF charging time to 40ms
|
||||
|
||||
// ROUTING
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x0e, 0b00001000); // left DAC reconstruction filter routed to LOL
|
||||
cw(0x0f, 0b00001000); // right DAC reconstruction filter routed to LOR
|
||||
cw(0x03, 0b00000000); // DAC PTM_P3/4
|
||||
cw(0x04, 0b00000000); // DAC PTM_P3/4
|
||||
|
||||
// LO GAIN
|
||||
cw(0x00, 0x01);
|
||||
cw(0x12, 0b00000001); // LOL gain 0dB
|
||||
cw(0x13, 0b00000001); // LOR gain 0dB
|
||||
|
||||
// POWER UP
|
||||
// ADC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x51, 0b11000000); // power up ADC
|
||||
cw(0x52, 0b00000000); // unmute ADC
|
||||
cw(0x3f, 0b11010100); // power up and route left digital audio to left dac channel and right to right
|
||||
cw(0x40, 0x00); // unmute DAC digital volume
|
||||
|
||||
// DAC VOLUME 0b00000000 = 0dB, 10000001 = -63.5dB, 0b00110000 = +24dB
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x41, 0b11111001); // LEFT
|
||||
cw(0x42, 0b11111001); // RIGHT
|
||||
|
||||
// ADC VOLUME 0b1101000 = -12dB, 0b00000000 = 0dB, 0b0101000 = +20dB
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x53, 0b01110000); // LEFT
|
||||
cw(0x54, 0b01110000); // RIGHT
|
||||
|
||||
// // STATUS FLAGS
|
||||
// Serial.println("CODEC STATUS");
|
||||
// cw(0x00, 0x00); // select page 0
|
||||
// Serial.println("ADC Flags");
|
||||
// cr(0x24, 1);
|
||||
// Serial.println("DAC Flags");
|
||||
// cr(0x25, 1);
|
||||
// Serial.println("P0_42 - Sticky Flags");
|
||||
// cr(0x2A, 1);
|
||||
|
||||
}
|
||||
|
||||
// void softReset(){}; // 0x00 0x01
|
||||
// void hardReset(){}; // reset pin
|
||||
|
||||
// void powerUp(){}; // power up
|
||||
|
||||
void setMicPgaGain(int gainLeft, int gainRight); // 0 - 47.5dB in 0.5dB steps
|
||||
void setMicPgaGainL(int gain);
|
||||
void setMicPgaGainR(int gain);
|
||||
|
||||
void setLineOutVolume(int volumeLeft, int volumeRight);
|
||||
void setLineOutVolumeL(int volume);
|
||||
void setLineOutVolumeR(int volume);
|
||||
|
||||
private:
|
||||
TwoWire *i2c;
|
||||
|
||||
};
|
||||
TwoWire *wire;
|
||||
uint8_t i2cAddress = 0x18;
|
||||
|
||||
|
||||
void cw(unsigned char first, unsigned char second){
|
||||
wire->beginTransmission(i2cAddress);
|
||||
wire->write(first);
|
||||
wire->write(second);
|
||||
int result = wire->endTransmission();
|
||||
if(DEBUG){
|
||||
Serial.print(i2cAddress, HEX);
|
||||
Serial.print(" ");
|
||||
Serial.print(first, HEX);
|
||||
Serial.print(" ");
|
||||
Serial.print(second, HEX);
|
||||
Serial.print(" : ");
|
||||
if(result == 0) {
|
||||
Serial.println("OK");
|
||||
} else {
|
||||
Serial.print("ERROR: ");
|
||||
Serial.println(result);
|
||||
}
|
||||
}
|
||||
delay(5);
|
||||
}
|
||||
|
||||
void cr(unsigned char first, uint8_t result[], size_t len){
|
||||
wire->beginTransmission(i2cAddress);
|
||||
wire->write(first); // set register for read
|
||||
wire->endTransmission(false); // false to not release the line
|
||||
|
||||
wire->requestFrom(i2cAddress, len, true);
|
||||
|
||||
wire->readBytes(result, len);
|
||||
|
||||
if(DEBUG){
|
||||
Serial.print(first, HEX);
|
||||
Serial.print(" ");
|
||||
|
||||
for (int i = 0; i < len; i++) {
|
||||
Serial.print(result[i], HEX);
|
||||
Serial.print(" ");
|
||||
Serial.println(result[i], BIN);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// TLV320AIC3204_Settings settings;
|
||||
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
// GENERAL
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x01, 0x01); // soft reset
|
||||
cw(0x1b, 0b00000000); // select I2S with 16 bit word length
|
||||
cw(0x1d, 0b00000000); // disable loopback
|
||||
|
||||
// POWER and CM
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x01, 0b00001000); // disable weak (crude) AVdd connection to DVdd
|
||||
cw(0x02, 0b00000001); // enable internal AVdd LDO and enable analog blocks
|
||||
cw(0x09, 0b00001100); // power up LOL, LOR, power down MAL, MAR, HPL, HPR
|
||||
cw(0x0a, 0b00001000); // set full chip CM to 0.75V
|
||||
cw(0x47, 0b00110011); // analog input quick charge time 1.6ms
|
||||
|
||||
// ROUTING
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x34, 0b10000000); // LEFT MICPGA P route IN1L to LEFT_P with 40k input impedance
|
||||
//cw(0x36, 0b11000000); // LEFT MICPGA M route CM to LEFT_M with 20k input impedance
|
||||
//cw(0x36, 0b00000011); // LEFT MICPGA M route CM to LEFT_M with 20k input impedance
|
||||
cw(0x37, 0b10000000); // RIGHT MICPGA P route IN1R to RIGHT_P with 20k input impedance
|
||||
//cw(0x39, 0b11000000); // RIGHT MICPGA M route CM to RIGHT_M with 20k input impedance
|
||||
//cw(0x39, 0b00000011); // RIGHT MICPGA M route CM to RIGHT_M with 20k input impedance
|
||||
cw(0x3a, 0b00111100); // connect IN2, IN3 weakly to CM
|
||||
|
||||
// GAIN
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x3b, 0b00000000); // unmute left MICPGA, set gain to 0db
|
||||
cw(0x3c, 0b00000000); // unmute right MICPGA, set gain to 0db
|
||||
|
||||
// VOLUME
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x16, 0b01110101); // MUTE IN1L to HPL
|
||||
cw(0x17, 0b01110101); // MUTE IN1R to HPR
|
||||
|
||||
// ADC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x12, 0x81); // NADC 1
|
||||
cw(0x13, 0x82); // MADC 2
|
||||
cw(0x14, 0b10000000); // OSR ADC 128
|
||||
//cw(0x14, 0b01000000); // OSR ADC 128
|
||||
cw(0x3d, 0b00000001); // ADC PRB_R3 = 11, PRB_R2 = 10, PRB_R1 = 01
|
||||
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x3d, 0b00000000); // ADC PTM_R4
|
||||
|
||||
// DAC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x0b, 0x81); // NDAC 1
|
||||
cw(0x0c, 0x82); // MDAC 2
|
||||
cw(0x0d, 0x00); // OSR DAC 128
|
||||
cw(0x0e, 0x80); // OSR DAC 128
|
||||
cw(0x1b, 0b00000000); // word length 16bits
|
||||
cw(0x3c, 0b00000001); // PRB_P3
|
||||
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x7b, 0b00000001); // set REF charging time to 40ms
|
||||
|
||||
// ROUTING
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x0e, 0b00001000); // left DAC reconstruction filter routed to LOL
|
||||
cw(0x0f, 0b00001000); // right DAC reconstruction filter routed to LOR
|
||||
cw(0x03, 0b00000000); // DAC PTM_P3/4
|
||||
cw(0x04, 0b00000000); // DAC PTM_P3/4
|
||||
|
||||
// LO GAIN
|
||||
cw(0x00, 0x01);
|
||||
cw(0x12, 0b00000001); // LOL gain 0dB
|
||||
cw(0x13, 0b00000001); // LOR gain 0dB
|
||||
|
||||
// POWER UP
|
||||
// ADC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x51, 0b11000000); // power up ADC
|
||||
cw(0x52, 0b00000000); // unmute ADC
|
||||
cw(0x3f, 0b11010100); // power up and route left digital audio to left dac channel and right to right
|
||||
cw(0x40, 0x00); // unmute DAC digital volume
|
||||
|
||||
// DAC VOLUME 0b00000000 = 0dB, 10000001 = -63.5dB, 0b00110000 = +24dB
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x41, 0b11111001); // LEFT
|
||||
cw(0x42, 0b11111001); // RIGHT
|
||||
|
||||
// ADC VOLUME 0b1101000 = -12dB, 0b00000000 = 0dB, 0b0101000 = +20dB
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x53, 0b01110000); // LEFT
|
||||
cw(0x54, 0b01110000); // RIGHT
|
||||
|
||||
*/
|
||||
@ -15,8 +15,15 @@
|
||||
#define AURAL 1
|
||||
#define UI_SAMPLERATE 22050
|
||||
|
||||
#define SIZE 256
|
||||
#define ECHO 96000
|
||||
int16_t buffer[SIZE];
|
||||
int16_t buffer2[ECHO];
|
||||
|
||||
I2S i2s(INPUT_PULLUP);
|
||||
|
||||
TLV320AIC3204 codec;
|
||||
|
||||
TCA9555 TCA(0x20, &Wire1);
|
||||
AS5600 ENC(&Wire1);
|
||||
|
||||
@ -68,6 +75,29 @@ void loadConfiguration(Config& config) {
|
||||
file.close();
|
||||
}
|
||||
|
||||
size_t count;
|
||||
size_t tape_write = 0;
|
||||
|
||||
void codec_transmit() {
|
||||
// for(int i = 0; i < count; i++){
|
||||
// buffer2[tape_write] = buffer[i];
|
||||
// tape_write++;
|
||||
// if(tape_write == ECHO) tape_write = 0;
|
||||
|
||||
// int tape_read = tape_write + 1;
|
||||
// if(tape_read < 0) tape_read += ECHO;
|
||||
// buffer[i] += buffer2[tape_read % ECHO];
|
||||
// }
|
||||
i2s.write((const uint8_t *)&buffer, count * sizeof(int16_t));
|
||||
}
|
||||
|
||||
void codec_receive(){
|
||||
count = i2s.read((uint8_t *)&buffer, SIZE * sizeof(int16_t)) * sizeof(uint32_t) / sizeof(int16_t);
|
||||
for(int i = 0; i < count; i++){
|
||||
buffer[i] *= -1;
|
||||
}
|
||||
}
|
||||
|
||||
void pwm_audio_callback() {
|
||||
while (ui_snd.availableForWrite()) {
|
||||
if(click) {
|
||||
@ -90,8 +120,8 @@ void tca_irq() {
|
||||
}
|
||||
|
||||
void setup() {
|
||||
Serial.begin();
|
||||
delay(2000);
|
||||
//Serial.begin();
|
||||
//delay(2000);
|
||||
|
||||
FastLED.addLeds<NEOPIXEL, 4>(edge_leds, 11);
|
||||
FastLED.addLeds<NEOPIXEL, 5>(ui_leds, 74);
|
||||
@ -160,26 +190,37 @@ void setup() {
|
||||
ui_snd.begin(UI_SAMPLERATE);
|
||||
|
||||
digitalWrite(7, LOW);
|
||||
|
||||
|
||||
pinMode(19, OUTPUT); // MCLK enable
|
||||
digitalWrite(19, HIGH); // enable MCLK
|
||||
|
||||
pinMode(20, OUTPUT); // CODEC reset
|
||||
digitalWrite(20, HIGH);
|
||||
|
||||
codec.begin(&Wire1);
|
||||
|
||||
i2s.onTransmit(codec_transmit);
|
||||
i2s.onReceive(codec_receive);
|
||||
|
||||
i2s.setDOUT(15);
|
||||
i2s.setDIN(14);
|
||||
i2s.setBCLK(16); // Note: LRCLK = BCLK + 1
|
||||
i2s.setMCLK(18);
|
||||
i2s.setMCLKmult(256); // 12.288.000Hz
|
||||
|
||||
i2s.swapClocks();
|
||||
i2s.setBitsPerSample(16);
|
||||
|
||||
i2s.setBuffers(6, SIZE * sizeof(int16_t) / sizeof(uint32_t));
|
||||
|
||||
if(!i2s.begin(48000)){
|
||||
Serial.println("I2S error!");
|
||||
while(100);
|
||||
}
|
||||
|
||||
digitalWrite(6, HIGH);
|
||||
delay(50);
|
||||
digitalWrite(6, LOW);
|
||||
|
||||
// i2s.setDOUT(14);
|
||||
// i2s.setDIN(15);
|
||||
// i2s.setBCLK(16); //
|
||||
// i2s.swapClocks();
|
||||
// i2s.setMCLK(18);
|
||||
// i2s.setBitsPerSample(16);
|
||||
// i2s.setFrequency(48000);
|
||||
// i2s.setSysClk(48000);
|
||||
// i2s.begin();
|
||||
|
||||
// while (1) {
|
||||
// int16_t l, r;
|
||||
// i2s.read16(&l, &r);
|
||||
// i2s.write16(l, r);
|
||||
// }
|
||||
}
|
||||
|
||||
int active = 0;
|
||||
@ -262,6 +303,6 @@ void loop() {
|
||||
}
|
||||
|
||||
FastLED.show();
|
||||
delay(1); // wait 1ms
|
||||
//delay(1); // wait 1ms
|
||||
}
|
||||
|
||||
|
||||
@ -2,45 +2,141 @@
|
||||
#include <cstdint>
|
||||
#include <Wire.h>
|
||||
|
||||
#ifndef DEBUG
|
||||
#define DEBUG false
|
||||
#endif
|
||||
|
||||
// class TLV320AIC3204_Settings{
|
||||
|
||||
class TLV320AIC3204_Settings{
|
||||
// public:
|
||||
// TwoWire *wire;
|
||||
// uint8_t i2cAddress = 0x18;
|
||||
|
||||
public:
|
||||
TwoWire *wire;
|
||||
uint8_t i2cAddress = 0x18;
|
||||
// ClockSettings1 clock_settings_1 = ClockSettings1(i2cAddress, wire);
|
||||
|
||||
ClockSettings1 clock_settings_1 = ClockSettings1(i2cAddress, wire);
|
||||
|
||||
};
|
||||
// };
|
||||
|
||||
class TLV320AIC3204{
|
||||
|
||||
public:
|
||||
TLV320AIC3204(){settings.wire = &Wire;}
|
||||
TLV320AIC3204(TwoWire *wire) {settings.wire = wire;}
|
||||
TLV320AIC3204() : wire(&Wire) {}
|
||||
TLV320AIC3204(TwoWire *wire) : wire(wire) {}
|
||||
|
||||
void begin(){};
|
||||
void begin(TwoWire *wire) {settings.wire = wire;}
|
||||
void begin(uint8_t i2cAddress, TwoWire *wire) {
|
||||
settings.i2cAddress = i2cAddress;
|
||||
settings.wire = wire;
|
||||
void begin(){init();};
|
||||
void begin(TwoWire *_wire) {
|
||||
wire = _wire;
|
||||
init();
|
||||
}
|
||||
void begin(uint8_t i2cAddress, TwoWire *_wire) {
|
||||
i2cAddress = i2cAddress;
|
||||
wire = _wire;
|
||||
init();
|
||||
}
|
||||
|
||||
void softReset(){}; // 0x00 0x01
|
||||
void hardReset(){}; // reset pin
|
||||
void init(){
|
||||
// GENERAL
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x01, 0x01); // soft reset
|
||||
cw(0x1b, 0b00000000); // select I2S with 16 bit word length
|
||||
cw(0x1d, 0b00000000); // disable loopback
|
||||
|
||||
void powerUp(){}; // power up
|
||||
// POWER and CM
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x01, 0b00001000); // disable weak (crude) AVdd connection to DVdd
|
||||
cw(0x02, 0b00000001); // enable internal AVdd LDO and enable analog blocks
|
||||
cw(0x09, 0b00001100); // power up LOL, LOR, power down MAL, MAR, HPL, HPR
|
||||
cw(0x0a, 0b00001000); // set full chip CM to 0.75V
|
||||
cw(0x47, 0b00110011); // analog input quick charge time 1.6ms
|
||||
|
||||
// ROUTING
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x34, 0b10000000); // LEFT MICPGA P route IN1L to LEFT_P with 40k input impedance
|
||||
cw(0x36, 0b10000000); // LEFT MICPGA M route CM to LEFT_M with 20k input impedance
|
||||
//cw(0x36, 0b00000011); // LEFT MICPGA M route CM to LEFT_M with 20k input impedance
|
||||
cw(0x37, 0b10000000); // RIGHT MICPGA P route IN1R to RIGHT_P with 20k input impedance
|
||||
cw(0x39, 0b10000000); // RIGHT MICPGA M route CM to RIGHT_M with 20k input impedance
|
||||
//cw(0x39, 0b00000011); // RIGHT MICPGA M route CM to RIGHT_M with 20k input impedance
|
||||
cw(0x3a, 0b00111100); // connect IN2, IN3 weakly to CM
|
||||
|
||||
// GAIN
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x3b, 0b00000000); // unmute left MICPGA, set gain to 0db
|
||||
cw(0x3c, 0b00000000); // unmute right MICPGA, set gain to 0db
|
||||
|
||||
// VOLUME
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x16, 0b01110101); // MUTE IN1L to HPL
|
||||
cw(0x17, 0b01110101); // MUTE IN1R to HPR
|
||||
|
||||
// ADC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x12, 0x81); // NADC 1
|
||||
cw(0x13, 0x82); // MADC 2
|
||||
cw(0x14, 0b10000000); // OSR ADC 128
|
||||
//cw(0x14, 0b01000000); // OSR ADC 128
|
||||
cw(0x3d, 0b00000001); // ADC PRB_R3 = 11, PRB_R2 = 10, PRB_R1 = 01
|
||||
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x3d, 0b00000000); // ADC PTM_R4
|
||||
|
||||
// DAC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x0b, 0x81); // NDAC 1
|
||||
cw(0x0c, 0x82); // MDAC 2
|
||||
cw(0x0d, 0x00); // OSR DAC 128
|
||||
cw(0x0e, 0x80); // OSR DAC 128
|
||||
cw(0x1b, 0b00000000); // word length 16bits
|
||||
cw(0x3c, 0b00000001); // PRB_P3
|
||||
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x7b, 0b00000001); // set REF charging time to 40ms
|
||||
|
||||
// ROUTING
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x0e, 0b00001000); // left DAC reconstruction filter routed to LOL
|
||||
cw(0x0f, 0b00001000); // right DAC reconstruction filter routed to LOR
|
||||
cw(0x03, 0b00000000); // DAC PTM_P3/4
|
||||
cw(0x04, 0b00000000); // DAC PTM_P3/4
|
||||
|
||||
// LO GAIN
|
||||
cw(0x00, 0x01);
|
||||
cw(0x12, 0b00000001); // LOL gain 0dB
|
||||
cw(0x13, 0b00000001); // LOR gain 0dB
|
||||
|
||||
// POWER UP
|
||||
// ADC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x51, 0b11000000); // power up ADC
|
||||
cw(0x52, 0b00000000); // unmute ADC
|
||||
cw(0x3f, 0b11010100); // power up and route left digital audio to left dac channel and right to right
|
||||
cw(0x40, 0x00); // unmute DAC digital volume
|
||||
|
||||
// DAC VOLUME 0b00000000 = 0dB, 10000001 = -63.5dB, 0b00110000 = +24dB
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x41, 0b11111001); // LEFT
|
||||
cw(0x42, 0b11111001); // RIGHT
|
||||
|
||||
// ADC VOLUME 0b1101000 = -12dB, 0b00000000 = 0dB, 0b0101000 = +20dB
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x53, 0b01110000); // LEFT
|
||||
cw(0x54, 0b01110000); // RIGHT
|
||||
|
||||
// // STATUS FLAGS
|
||||
// Serial.println("CODEC STATUS");
|
||||
// cw(0x00, 0x00); // select page 0
|
||||
// Serial.println("ADC Flags");
|
||||
// cr(0x24, 1);
|
||||
// Serial.println("DAC Flags");
|
||||
// cr(0x25, 1);
|
||||
// Serial.println("P0_42 - Sticky Flags");
|
||||
// cr(0x2A, 1);
|
||||
|
||||
void setClockMultiplexer(ClockSettings1::PLLRange range, ClockSettings1::PLLInputClock pll_input, ClockSettings1::CodecInputClock codec_input) {
|
||||
settings.clock_settings_1.pll_range = range;
|
||||
settings.clock_settings_1.pll_input_clock = pll_input;
|
||||
settings.clock_settings_1.codec_input_clock = codec_input;
|
||||
settings.clock_settings_1.write();
|
||||
}
|
||||
|
||||
void setADCParameters(int nadc, int madc, int osr);
|
||||
void setDACParameters(int madc, int nadc, int osr);
|
||||
// void softReset(){}; // 0x00 0x01
|
||||
// void hardReset(){}; // reset pin
|
||||
|
||||
// void powerUp(){}; // power up
|
||||
|
||||
void setMicPgaGain(int gainLeft, int gainRight); // 0 - 47.5dB in 0.5dB steps
|
||||
void setMicPgaGainL(int gain);
|
||||
@ -52,10 +148,54 @@ class TLV320AIC3204{
|
||||
|
||||
private:
|
||||
|
||||
TLV320AIC3204_Settings settings;
|
||||
TwoWire *wire;
|
||||
uint8_t i2cAddress = 0x18;
|
||||
|
||||
|
||||
void cw(unsigned char first, unsigned char second){
|
||||
wire->beginTransmission(i2cAddress);
|
||||
wire->write(first);
|
||||
wire->write(second);
|
||||
int result = wire->endTransmission();
|
||||
if(DEBUG){
|
||||
Serial.print(i2cAddress, HEX);
|
||||
Serial.print(" ");
|
||||
Serial.print(first, HEX);
|
||||
Serial.print(" ");
|
||||
Serial.print(second, HEX);
|
||||
Serial.print(" : ");
|
||||
if(result == 0) {
|
||||
Serial.println("OK");
|
||||
} else {
|
||||
Serial.print("ERROR: ");
|
||||
Serial.println(result);
|
||||
}
|
||||
}
|
||||
delay(5);
|
||||
}
|
||||
|
||||
void cr(unsigned char first, uint8_t result[], size_t len){
|
||||
wire->beginTransmission(i2cAddress);
|
||||
wire->write(first); // set register for read
|
||||
wire->endTransmission(false); // false to not release the line
|
||||
|
||||
wire->requestFrom(i2cAddress, len, true);
|
||||
|
||||
wire->readBytes(result, len);
|
||||
|
||||
if(DEBUG){
|
||||
Serial.print(first, HEX);
|
||||
Serial.print(" ");
|
||||
|
||||
for (int i = 0; i < len; i++) {
|
||||
Serial.print(result[i], HEX);
|
||||
Serial.print(" ");
|
||||
Serial.println(result[i], BIN);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// TLV320AIC3204_Settings settings;
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
I2S i2s(INPUT_PULLUP);
|
||||
|
||||
TLV320AIC3204 codec;
|
||||
TLV320AIC3204 codec;
|
||||
|
||||
#define SIZE 16
|
||||
#define ECHO 192000
|
||||
@ -59,105 +59,6 @@ void setup() {
|
||||
digitalWrite(20, HIGH);
|
||||
|
||||
codec.begin(&Wire1);
|
||||
/*
|
||||
// GENERAL
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x01, 0x01); // soft reset
|
||||
cw(0x1b, 0b00000000); // select I2S with 16 bit word length
|
||||
cw(0x1d, 0b00000000); // disable loopback
|
||||
|
||||
// POWER and CM
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x01, 0b00001000); // disable weak (crude) AVdd connection to DVdd
|
||||
cw(0x02, 0b00000001); // enable internal AVdd LDO and enable analog blocks
|
||||
cw(0x09, 0b00001100); // power up LOL, LOR, power down MAL, MAR, HPL, HPR
|
||||
cw(0x0a, 0b00001000); // set full chip CM to 0.75V
|
||||
cw(0x47, 0b00110011); // analog input quick charge time 1.6ms
|
||||
|
||||
// ROUTING
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x34, 0b10000000); // LEFT MICPGA P route IN1L to LEFT_P with 40k input impedance
|
||||
//cw(0x36, 0b11000000); // LEFT MICPGA M route CM to LEFT_M with 20k input impedance
|
||||
//cw(0x36, 0b00000011); // LEFT MICPGA M route CM to LEFT_M with 20k input impedance
|
||||
cw(0x37, 0b10000000); // RIGHT MICPGA P route IN1R to RIGHT_P with 20k input impedance
|
||||
//cw(0x39, 0b11000000); // RIGHT MICPGA M route CM to RIGHT_M with 20k input impedance
|
||||
//cw(0x39, 0b00000011); // RIGHT MICPGA M route CM to RIGHT_M with 20k input impedance
|
||||
cw(0x3a, 0b00111100); // connect IN2, IN3 weakly to CM
|
||||
|
||||
// GAIN
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x3b, 0b00000000); // unmute left MICPGA, set gain to 0db
|
||||
cw(0x3c, 0b00000000); // unmute right MICPGA, set gain to 0db
|
||||
|
||||
// VOLUME
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x16, 0b01110101); // MUTE IN1L to HPL
|
||||
cw(0x17, 0b01110101); // MUTE IN1R to HPR
|
||||
|
||||
// ADC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x12, 0x81); // NADC 1
|
||||
cw(0x13, 0x82); // MADC 2
|
||||
cw(0x14, 0b10000000); // OSR ADC 128
|
||||
//cw(0x14, 0b01000000); // OSR ADC 128
|
||||
cw(0x3d, 0b00000001); // ADC PRB_R3 = 11, PRB_R2 = 10, PRB_R1 = 01
|
||||
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x3d, 0b00000000); // ADC PTM_R4
|
||||
|
||||
// DAC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x0b, 0x81); // NDAC 1
|
||||
cw(0x0c, 0x82); // MDAC 2
|
||||
cw(0x0d, 0x00); // OSR DAC 128
|
||||
cw(0x0e, 0x80); // OSR DAC 128
|
||||
cw(0x1b, 0b00000000); // word length 16bits
|
||||
cw(0x3c, 0b00000001); // PRB_P3
|
||||
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x7b, 0b00000001); // set REF charging time to 40ms
|
||||
|
||||
// ROUTING
|
||||
cw(0x00, 0x01); // select page 1
|
||||
cw(0x0e, 0b00001000); // left DAC reconstruction filter routed to LOL
|
||||
cw(0x0f, 0b00001000); // right DAC reconstruction filter routed to LOR
|
||||
cw(0x03, 0b00000000); // DAC PTM_P3/4
|
||||
cw(0x04, 0b00000000); // DAC PTM_P3/4
|
||||
|
||||
// LO GAIN
|
||||
cw(0x00, 0x01);
|
||||
cw(0x12, 0b00000001); // LOL gain 0dB
|
||||
cw(0x13, 0b00000001); // LOR gain 0dB
|
||||
|
||||
// POWER UP
|
||||
// ADC
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x51, 0b11000000); // power up ADC
|
||||
cw(0x52, 0b00000000); // unmute ADC
|
||||
cw(0x3f, 0b11010100); // power up and route left digital audio to left dac channel and right to right
|
||||
cw(0x40, 0x00); // unmute DAC digital volume
|
||||
|
||||
// DAC VOLUME 0b00000000 = 0dB, 10000001 = -63.5dB, 0b00110000 = +24dB
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x41, 0b11111001); // LEFT
|
||||
cw(0x42, 0b11111001); // RIGHT
|
||||
|
||||
// ADC VOLUME 0b1101000 = -12dB, 0b00000000 = 0dB, 0b0101000 = +20dB
|
||||
cw(0x00, 0x00); // select page 0
|
||||
cw(0x53, 0b01110000); // LEFT
|
||||
cw(0x54, 0b01110000); // RIGHT
|
||||
|
||||
// STATUS FLAGS
|
||||
Serial.println("CODEC STATUS");
|
||||
cw(0x00, 0x00); // select page 0
|
||||
Serial.println("ADC Flags");
|
||||
cr(0x24, 1);
|
||||
Serial.println("DAC Flags");
|
||||
cr(0x25, 1);
|
||||
Serial.println("P0_42 - Sticky Flags");
|
||||
cr(0x2A, 1);
|
||||
|
||||
*/
|
||||
|
||||
i2s.onTransmit(codec_transmit);
|
||||
i2s.onReceive(codec_receive);
|
||||
|
||||
Reference in New Issue
Block a user