Переглянути джерело

Fix 'no return value' in other route(..);

The alternative route(..) was declared as unsigned short but was not
return anything.
dds
robsoles 11 роки тому
джерело
коміт
2475d5ca8e
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      control_sgtl5000.h

+ 1
- 1
control_sgtl5000.h Переглянути файл

@@ -58,7 +58,7 @@ public:
//bool inputMic(void) { return write(0x002A, 0x0172) && write(0x0024, ana_ctrl & ~(1<<2)); }

unsigned short route(uint8_t i2s_out, uint8_t dac, uint8_t dap, uint8_t dap_mix);
unsigned short route(uint8_t i2s_out, uint8_t dac, uint8_t dap) { route(i2s_out,dac,dap,0); }
unsigned short route(uint8_t i2s_out, uint8_t dac, uint8_t dap) { return route(i2s_out,dac,dap,0); }
bool volume(float left, float right);
unsigned short micGain(unsigned int n) { return modify(0x002A, n&3, 3); }
unsigned short lo_lvl(uint8_t n);

Завантаження…
Відмінити
Зберегти