Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/a83e43dbef04690f85fe026b50fbabbedfe8d70c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
24 additions and
12 deletions
MicroDexed.ino
UI.hpp
@ -816,14 +816,14 @@ void handleSystemExclusive(byte * sysex, uint len)
sysex [ 4 ] & = 0x7f ;
sysex [ 5 ] & = 0x7f ;
uint8_t data_index ;
uint8_t data_index = 0 ;
if ( ( ( sysex [ 3 ] & 0x7c ) > > 2 ) = = 0 )
{
MicroDexed [ instance_id ] - > notesOff ( ) ;
MicroDexed [ instance_id ] - > data [ sysex [ 4 ] + ( ( sysex [ 3 ] & 0x03 ) * 128 ) ] = sysex [ 5 ] ; // set parameter
for ( uint8_t i = 0 ; i < 128 | | sysex [ 5 ] ! = 0xf7 ; i + + )
MicroDexed [ instance_id ] - > data [ sysex [ 4 ] + ( ( sysex [ 3 ] & 0x03 ) * 128 ) + i ] = sysex [ 5 ] ; // set parameter
MicroDexed [ instance_id ] - > doRefreshVoice ( ) ;
data_index = sysex [ 4 ] + ( ( sysex [ 3 ] & 0x03 ) * 128 ) ;
}
else
{
@ -904,13 +904,19 @@ void handleSystemExclusive(byte * sysex, uint len)
# ifdef DEBUG
Serial . print ( F ( " SysEx " ) ) ;
if ( ( ( sysex [ 3 ] & 0x7c ) > > 2 ) = = 0 )
Serial . print ( F ( " function " ) ) ;
Serial . print ( F ( " parameter " ) ) ;
Serial . print ( sysex [ 4 ] , DEC ) ;
Serial . print ( F ( " = " ) ) ;
Serial . print ( sysex [ 5 ] , DEC ) ;
Serial . print ( F ( " , data_index = " ) ) ;
Serial . println ( data_index , DEC ) ;
{
Serial . println ( F ( " voice: " ) ) ;
show_patch ( instance_id ) ;
}
else
{
Serial . print ( F ( " function: " ) ) ;
Serial . print ( sysex [ 4 ] , DEC ) ;
Serial . print ( F ( " = " ) ) ;
Serial . print ( sysex [ 5 ] , DEC ) ;
Serial . print ( F ( " , data_index = " ) ) ;
Serial . println ( data_index , DEC ) ;
}
# endif
}
else if ( len = = 163 )
@ -2731,10 +2731,16 @@ void UI_func_portamento_mode(uint8_t param)
switch ( configuration . dexed [ instance_id ] . portamento_mode )
{
case 0 :
lcd . print ( F ( " [RETAIN] " ) ) ;
if ( configuration . dexed [ instance_id ] . monopoly = = 1 )
lcd . print ( F ( " [RETAIN ] " ) ) ;
else
lcd . print ( F ( " [FINGERED] " ) ) ;
break ;
case 1 :
lcd . print ( F ( " [FOLLOW] " ) ) ;
if ( configuration . dexed [ instance_id ] . monopoly = = 1 )
lcd . print ( F ( " [FOLLOW ] " ) ) ;
else
lcd . print ( F ( " [FULL ] " ) ) ;
break ;
}
}