Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/e3843ac0c8ab21130f9cf7a19fac62e7288619f6?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
11 additions and
7 deletions
config.h
@ -54,9 +54,10 @@
// For SYSEX Bank upload via USB:
// sed -i.orig 's/SYSEX_MAX_LEN = 290/SYSEX_MAX_LEN = 4104/' /usr/local/arduino-teensy/hardware/teensy/avr/libraries/USBHost_t36/USBHost_t36.h
// sed -i.orig 's/^#define USB_MIDI_SYSEX_MAX 290/#define USB_MIDI_SYSEX_MAX 4104/' /usr/local/arduino-teensy/hardware/teensy/avr/cores/teensy3/usb_midi.h
// sed -i.orig 's/^#define USB_MIDI_SYSEX_MAX 290/#define USB_MIDI_SYSEX_MAX 4104/' /usr/local/arduino-teensy/hardware/teensy/avr/cores/teensy4/usb_midi.h
//#define USB_MIDI_SYSEX_MAX 4104
# define VERSION "1.0.10 "
# define VERSION "1.0.11 "
//*************************************************************************************************
//* DEVICE SETTINGS
@ -92,7 +93,7 @@
//*************************************************************************************************
//* DEBUG OUTPUT SETTINGS
//*************************************************************************************************
//#define DEBUG 1
# define DEBUG 1
# define SERIAL_SPEED 230400
# define SHOW_XRUN 1
# define SHOW_CPU_LOAD_MSEC 5000
@ -232,18 +233,21 @@
# define ENC_L_PIN_A 3
# define ENC_L_PIN_B 2
# define BUT_L_PIN 4
# ifndef TEENSY4
# if defined(ARDUINO_TEENSY36)
# define ENC_R_PIN_A 28
# define ENC_R_PIN_B 29
# define BUT_R_PIN 30
# else
//#define ENC_R_PIN_A 6
//#define ENC_R_PIN_B 5
//#define BUT_R_PIN 8
# if defined(ARDUINO_TEENSY40)
# define ENC_R_PIN_A 6
# define ENC_R_PIN_B 5
# define BUT_R_PIN 8
# else // ARDUINO_TEENSY41
# define ENC_R_PIN_A 24
# define ENC_R_PIN_B 5
# define BUT_R_PIN 9
# endif
# endif
# define BUT_DEBOUNCE_MS 20
# define LONG_BUTTON_PRESS 500
@ -284,7 +288,7 @@
// Teensy-4.x settings
# if defined(__IMXRT1062__) //Teensy-4.x
# define MAX_NOTES 16
# define MAX_NOTES 32
# define TEENSY4
# endif