Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/5aa25df360f1386adcf0518141339d9d42e0a379
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
13 additions and
3 deletions
MicroDexed.ino
config.h
@ -399,7 +399,16 @@ bool queue_midi_event(uint8_t type, uint8_t data1, uint8_t data2)
print_midi_event ( type , data1 , data2 ) ;
# endif
type = type & 0xf0 ;
// check for MIDI channel
if ( midi_channel ! = MIDI_CHANNEL_OMNI )
{
uint8_t c = type & 0x0f ;
if ( c ! = midi_channel )
return ( true ) ;
}
// now throw away the MIDI channel information
type & = 0xf0 ;
# ifdef MASTER_KEY_MIDI
if ( type = = 0x80 & & data1 = = MASTER_KEY_MIDI ) // Master key released
@ -411,6 +420,7 @@ bool queue_midi_event(uint8_t type, uint8_t data1, uint8_t data2)
}
else if ( type = = 0x90 & & data1 = = MASTER_KEY_MIDI ) // Master key pressed
{
dexed - > notesOff ( ) ;
master_key_enabled = true ;
# ifdef DEBUG
Serial . println ( F ( " Master key enabled " ) ) ;
@ -42,8 +42,8 @@
# endif
// Master key handling (comment for disabling)
# define MASTER_KEY_MIDI MIDI_C6
# define MASTER_NUM1 MIDI_C1
# define MASTER_KEY_MIDI MIDI_C7
# define MASTER_NUM1 MIDI_C2
// Debug output
# define SERIAL_SPEED 38400