Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/adf748a2b4c22cf4fb9f454b2672675b73bb8de6?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
11 deletions
MicroDexed.ino
config.h
@ -85,7 +85,7 @@ void setup()
# endif
// start MIDI
MIDI . begin ( MIDI_CHANNEL_OMNI ) ;
MIDI . begin ( DEFAULT_ MIDI_CHANNEL) ;
// start audio card
AudioMemory ( AUDIO_MEM ) ;
@ -184,12 +184,12 @@ void handle_midi_input(void)
# ifdef DEBUG
Serial . println ( F ( " MIDI-USB " ) ) ;
# endif
if ( MIDI . getType ( ) > = 0xf0 ) // SysEX
if ( midi_usb . getType ( ) > = 0xf0 ) // SysEX
{
handle_sysex_parameter ( MIDI . getSysExArray ( ) , MIDI . getSysExArrayLength ( ) ) ;
handle_sysex_parameter ( midi_usb . getSysExArray ( ) , midi_usb . getSysExArrayLength ( ) ) ;
}
else if ( queue_midi_event ( midi_usb . getType ( ) , midi_usb . getData1 ( ) , midi_usb . getData2 ( ) ) )
return ;
else
queue_midi_event ( midi_usb . getType ( ) , midi_usb . getData1 ( ) , midi_usb . getData2 ( ) ) ;
}
# endif
@ -203,10 +203,7 @@ void handle_midi_input(void)
handle_sysex_parameter ( MIDI . getSysExArray ( ) , MIDI . getSysExArrayLength ( ) ) ;
}
else
{
if ( queue_midi_event ( MIDI . getType ( ) , MIDI . getData1 ( ) , MIDI . getData2 ( ) ) )
return ;
}
queue_midi_event ( MIDI . getType ( ) , MIDI . getData1 ( ) , MIDI . getData2 ( ) ) ;
}
}
@ -26,7 +26,7 @@
// Initial values
# define MIDI_DEVICE Serial1
# define VOLUME 0.1
# define VOLUME 0.5
# define SAMPLE_RATE 44100
//#define DEXED_ENGINE DEXED_ENGINE_MODERN
//#define USE_ONBOARD_USB_HOST 1