Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/90927a5a282d37a30ef84db607678ef0ba640bdb?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
11 deletions
MicroDexed.ino
@ -1817,7 +1817,7 @@ float pseudo_log_curve(float value)
// ideas from here: https://forum.pjrc.com/threads/56015-Changing-Volume-Levels-based-on-pot-wheel
const float _pseudo_log = 1048575 / ( float ) ( 1 < < 20 ) ;
//const float _pseudo_log = 1048575 / (float)(1 << 20);
/*
# ifdef DEBUG
Serial . print ( F ( " value in: " ) ) ;
@ -1827,16 +1827,10 @@ float pseudo_log_curve(float value)
# endif
*/
return ( mapfloat ( _pseudo_log * arm_sin_f32 ( value ) , 0.0 , _pseudo_log * arm_sin_f32 ( 1.0 ) , 0.0 , 1.0 ) ) ;
/*
float g = mapfloat ( _pseudo_log * arm_sin_f32 ( value ) , 0.0 , _pseudo_log * arm_sin_f32 ( 1.0 ) , 0.0 , 1.0 ) ;
if ( g = = 0.0 )
return ( 0.001 ) ;
else
return ( g ) ;
*/
//return (mapfloat(_pseudo_log * arm_sin_f32(value), 0.0, _pseudo_log * arm_sin_f32(1.0), 0.0, 1.0));
//return (1 - sqrt(1 - value * value));
//return (pow(value, 2));
return ( pow ( 2 , value ) - 1 ) ;
}
uint32_t crc32 ( byte * calc_start , uint16_t calc_bytes ) // base code from https://www.arduino.cc/en/Tutorial/EEPROMCrc