-
Notifications
You must be signed in to change notification settings - Fork 3
/
Muses72320.cpp
142 lines (121 loc) · 4.4 KB
/
Muses72320.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
The MIT License (MIT)
Copyright (c) 2016 Christoffer Hjalmarsson
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "Muses72320.h"
#include <SPI.h>
typedef Muses72320 Self;
// pass through some types into global scope.
using data_t = Self::data_t;
using volume_t = Self::volume_t;
// control select addresses, chip address (low 4) ignored.
static const data_t s_control_attenuation_l = 0b00000000;
static const data_t s_control_attenuation_r = 0b00100000;
static const data_t s_control_gain_l = 0b00010000;
static const data_t s_control_gain_r = 0b00110000;
static const data_t s_control_states = 0b01000000;
// control state bits.
static const data_t s_state_bit_zero_crossing = 5;
static const data_t s_state_bit_gain = 6;
static const data_t s_state_bit_attenuation = 7;
static const int s_slave_select_pin = 10;
static const SPISettings s_muses_spi_settings(250000, MSBFIRST, SPI_MODE2);
static inline data_t volume_to_attenuation(volume_t volume)
{
// volume to attenuation data conversion:
// #=====================================#
// | 0.0 dB | in: [ 0] -> 0b00010000 |
// | -111.5 dB | in: [223] -> 0b11101111 |
// #=====================================#
return static_cast<data_t>(min(-volume, 223) + 0x10);
}
static inline data_t volume_to_gain(volume_t gain)
{
// volume to gain data conversion:
// #===================================#
// | 0 dB | in: [ 0] -> 0b00000000 |
// | +31.5 dB | in: [63] -> 0b01111111 |
// #===================================#
return static_cast<data_t>(min(gain, 63));
}
Self::Muses72320(address_t chip_address) :
chip_address(chip_address & 0b0111),
states(0)
{ }
void Self::begin()
{
pinMode(s_slave_select_pin, OUTPUT);
SPI.begin();
}
void Self::setVolume(volume_t lch, volume_t rch)
{
if (bitRead(states, s_state_bit_attenuation)) {
// interconnected left and right channels.
transfer(s_control_attenuation_l, volume_to_attenuation(lch));
} else {
// independent left and right channels.
transfer(s_control_attenuation_l, volume_to_attenuation(lch));
transfer(s_control_attenuation_r, volume_to_attenuation(rch));
}
}
void Self::setGain(volume_t lch, volume_t rch)
{
if (bitRead(states, s_state_bit_gain)) {
// interconnected left and right channels.
transfer(s_control_gain_l, volume_to_gain(lch));
} else {
// independent left and right channels.
transfer(s_control_gain_l, volume_to_gain(lch));
transfer(s_control_gain_r, volume_to_gain(rch));
}
}
void Self::mute()
{
if (bitRead(states, s_state_bit_attenuation)) {
transfer(s_control_attenuation_l, 0);
} else {
transfer(s_control_attenuation_l, 0);
transfer(s_control_attenuation_r, 0);
}
}
void Self::setZeroCrossing(bool enabled)
{
// 0 is enabled, 1 is disabled.
bitWrite(states, s_state_bit_zero_crossing, !enabled);
transfer(s_control_states, states);
}
void Self::setAttenuationLink(bool enabled)
{
// 1 is enabled, 0 is disabled.
bitWrite(states, s_state_bit_attenuation, enabled);
transfer(s_control_states, states);
}
void Self::setGainLink(bool enabled)
{
// 1 is enabled, 0 is disabled.
bitWrite(states, s_state_bit_gain, enabled);
transfer(s_control_states, states);
}
void Self::transfer(address_t address, data_t data)
{
SPI.beginTransaction(s_muses_spi_settings);
digitalWrite(s_slave_select_pin, LOW);
SPI.transfer(data);
SPI.transfer(address | chip_address);
digitalWrite(s_slave_select_pin, HIGH);
SPI.endTransaction();
}