Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/c871886063936534877385ed9da10ea33a7baefa?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
11 additions and
4 deletions
MicroDexed.ino
config.h
midi_devices.hpp
@ -351,6 +351,9 @@ void loop()
# endif
# endif
}
}
/******************************************************************************
* MIDI MESSAGE HANDLER
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void handleNoteOn ( byte inChannel , byte inNumber , byte inVelocity )
void handleNoteOn ( byte inChannel , byte inNumber , byte inVelocity )
{
{
if ( checkMidiChannel ( inChannel ) )
if ( checkMidiChannel ( inChannel ) )
@ -647,6 +650,10 @@ void handleSystemReset(void)
dexed - > resetControllers ( ) ;
dexed - > resetControllers ( ) ;
}
}
/******************************************************************************
* END OF MIDI MESSAGE HANDLER
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
bool checkMidiChannel ( byte inChannel )
bool checkMidiChannel ( byte inChannel )
{
{
// check for MIDI channel
// check for MIDI channel
@ -84,7 +84,7 @@
# define AUDIO_MEM 450
# define AUDIO_MEM 450
# endif
# endif
# define DELAY_MAX_TIME 1200.0
# define DELAY_MAX_TIME 1200.0
# define REDUCE_LOUDNESS 0
# define REDUCE_LOUDNESS 1
# endif
# endif
# define SAMPLE_RATE 44100
# define SAMPLE_RATE 44100
@ -1593,12 +1593,12 @@ void check_midi_devices(void)
# ifdef MIDI_DEVICE_DIN
# ifdef MIDI_DEVICE_DIN
midi_serial . read ( ) ;
midi_serial . read ( ) ;
# endif
# endif
# ifdef MIDI_DEVICE_USB
midi_onboard_usb . read ( ) ;
# endif
# ifdef MIDI_DEVICE_USB_HOST
# ifdef MIDI_DEVICE_USB_HOST
usb_host . Task ( ) ;
usb_host . Task ( ) ;
midi_usb . read ( ) ;
midi_usb . read ( ) ;
# endif
# endif
# ifdef MIDI_DEVICE_USB
midi_onboard_usb . read ( ) ;
# endif
}
}
# endif // MIDI_DEVICES_H
# endif // MIDI_DEVICES_H