|
-
-
- #ifndef control_cs42448_h_
- #define control_cs42448_h_
-
- #include "AudioControl.h"
- #include <math.h>
-
- class AudioControlCS42448 : public AudioControl
- {
- public:
- AudioControlCS42448(void) : i2c_addr(0x48), muted(true) { }
- void setAddress(uint8_t addr) {
- i2c_addr = 0x48 | (addr & 3);
- }
- bool enable(void);
- bool disable(void) {
- return false;
- }
- bool volume(float level) {
- return volumeInteger(volumebyte(level));
- }
- bool inputLevel(float level) {
- return inputLevelInteger(inputlevelbyte(level));
- }
- bool inputSelect(int n) {
- return (n == 0) ? true : false;
- }
- bool volume(int channel, float level) {
- if (channel < 1 || channel > 8) return false;
- return volumeInteger(channel, volumebyte(level));
- }
- bool inputLevel(int channel, float level) {
- if (channel < 1 || channel > 6) return false;
- return inputLevelInteger(channel, inputlevelbyte(level));
- }
- private:
- bool volumeInteger(uint32_t n);
- bool volumeInteger(int channel, uint32_t n);
- bool inputLevelInteger(int32_t n);
- bool inputLevelInteger(int chnnel, int32_t n);
-
- uint32_t volumebyte(float level) {
- if (level >= 1.0) return 0;
- if (level <= 0.0000003981) return 128;
- return roundf(log10f(level) * -20.0);
- }
-
- int32_t inputlevelbyte(float level) {
- if (level > 15.8489) return 48;
- if (level < 0.00063095734) return -128;
- return roundf(log10f(level) * 40.0);
- }
- bool write(uint32_t address, uint32_t data);
- bool write(uint32_t address, const void *data, uint32_t len);
- uint8_t i2c_addr;
- bool muted;
- };
-
- #endif
|