Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/c8ea230e4b0bc6bc8bbf0c2842dc89bb7189c641?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
7 deletions
MicroDexed.ino
effect_stereo_panorama.cpp
@ -1081,7 +1081,7 @@ void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity)
{
if ( inNumber > = configuration . epiano . lowest_note & & inNumber < = configuration . epiano . highest_note )
{
ep . noteOn ( inNumber + configuration . epiano . transpose , inVelocity ) ;
ep . noteOn ( inNumber + configuration . epiano . transpose - 23 , inVelocity ) ;
# ifdef DEBUG
char note_name [ 4 ] ;
getNoteName ( note_name , inNumber ) ;
@ -1166,7 +1166,7 @@ void handleNoteOff(byte inChannel, byte inNumber, byte inVelocity)
{
if ( inNumber > = configuration . epiano . lowest_note & & inNumber < = configuration . epiano . highest_note )
{
ep . noteOff ( inNumber + configuration . epiano . transpose ) ;
ep . noteOff ( inNumber + configuration . epiano . transpose - 23 ) ;
# ifdef DEBUG
char note_name [ 4 ] ;
getNoteName ( note_name , inNumber ) ;
@ -68,7 +68,7 @@ inline float mapfloat(float val, float in_min, float in_max, float out_min, floa
void AudioEffectStereoPanorama : : panorama ( float p )
{
pan = mapfloat ( p , - 1.0 , 1.0 , - 1.0 , 1.0 ) ;
pan = constrain ( p , - 1.0 , 1.0 ) ;
}
void AudioEffectStereoPanorama : : update ( void )
@ -98,14 +98,14 @@ void AudioEffectStereoPanorama::update(void)
{
if ( pan > 0.0 )
{
out_f [ 0 ] [ n ] = ( pan * in_f [ 1 ] [ n ] ) + ( ( 1.0 - pan ) * in_f [ 0 ] [ n ] ) ;
out_f [ 1 ] [ n ] = ( 1.0 - pan ) * in_f [ 1 ] [ n ] ;
out_f [ 1 ] [ n ] = ( pan * in_f [ 0 ] [ n ] ) + ( ( 1.0 - pan ) * in_f [ 1 ] [ n ] ) ;
out_f [ 0 ] [ n ] = ( 1.0 - pan ) * in_f [ 0 ] [ n ] ;
}
else
{
float _pan_ = fabs ( pan ) ;
out_f [ 1 ] [ n ] = ( _pan_ * in_f [ 0 ] [ n ] ) + ( ( 1.0 - _pan_ ) * in_f [ 1 ] [ n ] ) ;
out_f [ 0 ] [ n ] = ( 1.0 - _pan_ ) * in_f [ 0 ] [ n ] ;
out_f [ 0 ] [ n ] = ( _pan_ * in_f [ 1 ] [ n ] ) + ( ( 1.0 - _pan_ ) * in_f [ 0 ] [ n ] ) ;
out_f [ 1 ] [ n ] = ( 1.0 - _pan_ ) * in_f [ 1 ] [ n ] ;
}
}
else