ok.
The PCB is ok with minor modifications of the configuration files:
>I’ve made a little mistake during the design of the PCB: I have started to increment the encoders from left to right and the LEDrings from top to bottom: each LEDring initialy didn’t move corresponding the good encoder.
In the file “setup_midibox64e.asm”:
MIOS_ENC_PIN_TABLE
;; encoders 1-16
;; SR Pin Mode
ENC_ENTRY 2, 6, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 1
ENC_ENTRY 1, 6, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 2
ENC_ENTRY 2, 4, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 3
ENC_ENTRY 1, 4, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 4
ENC_ENTRY 2, 2, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 5
ENC_ENTRY 1, 2, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 6
ENC_ENTRY 2, 0, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 7
ENC_ENTRY 1, 0, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 8
ENC_ENTRY 4, 6, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 9
ENC_ENTRY 3, 6, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 10
ENC_ENTRY 4, 4, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 11
ENC_ENTRY 3, 4, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 12
ENC_ENTRY 4, 2, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 13
ENC_ENTRY 3, 2, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 14
ENC_ENTRY 4, 0, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 15
ENC_ENTRY 3, 0, MIOS_ENC_MODE_NON_DETENTED ; V-Pot 16
>I have also modified the LEDring pattern because the first LED which lighted up was the middle one (and I don’t know why because the schema seems ok).
In the file “mb64e_presets.inc”:
;; LED Pattern #1
LED_ENTRY b’0000000000000000’
LED_ENTRY b’0000000010000000’
LED_ENTRY b’0000000011000000’
LED_ENTRY b’0000000011000000’
LED_ENTRY b’0000000011100000’
LED_ENTRY b’0000000011100000’
LED_ENTRY b’0000000011110000’
LED_ENTRY b’0000000011110000’
LED_ENTRY b’0000000011111000’
LED_ENTRY b’0000000011111000’
LED_ENTRY b’0000000011111100’
LED_ENTRY b’0000000011111100’
LED_ENTRY b’0000000011111110’
LED_ENTRY b’0000000011111110’
LED_ENTRY b’0000000011111111’
LED_ENTRY b’0000000011111111’
LED_ENTRY b’1000000011111111’
LED_ENTRY b’1000000011111111’
LED_ENTRY b’1100000011111111’
LED_ENTRY b’1100000011111111’
LED_ENTRY b’1110000011111111’
LED_ENTRY b’1110000011111111’
LED_ENTRY b’1111000011111111’
LED_ENTRY b’1111000011111111’
LED_ENTRY b’1111100011111111’
LED_ENTRY b’1111100011111111’
LED_ENTRY b’1111110011111111’
LED_ENTRY b’1111110011111111’
LED_ENTRY b’1111111011111111’
LED_ENTRY b’1111111011111111’
LED_ENTRY b’1111111111111111’
LED_ENTRY b’1111111111111111’
Jerome.