Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/992fce9e4aee5adf225f56bd47e7e8741d272731?style=split&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Logarithmic volume also for PT8211.

pull/4/head
Holger Wirtz 7 years ago
parent 8c648d4864
commit 992fce9e4a
  1. 6
      MicroDexed.ino

@ -589,9 +589,9 @@ void set_volume(float v, float vr, float vl)
#ifdef TEENSY_AUDIO_BOARD #ifdef TEENSY_AUDIO_BOARD
sgtl5000_1.dacVolume(log(vol * vol_left), log(vol * vol_right)); sgtl5000_1.dacVolume(log(vol * vol_left), log(vol * vol_right));
#else #else
volume_master.gain(vol); volume_master.gain(log(vol));
volume_r.gain(vr); volume_r.gain(log(vr));
volume_l.gain(vl); volume_l.gain(log(vl));
#endif #endif
} }

Loading…
Cancel
Save