Hi
I’m using a custom version of the app called ain64_din128_dout128_v2_0.zip written in C; I’m not very practical in the apps development but I only want to know what’s the default configuration for the digital out of this app. because I Need that every single led connected to the board via the dout module will light up when the corresponding din will be pressed: is this the default config. or not? If not any suggestion to how (and where) I must modify the code?
Thank you!
Andrea
Hi,
I´m not a programmer, but if I understand it right you have to modify the mios_tables.inc .
At the moment there are no events in (MT_EOT).
So have a look at this applicatin:
http://www.ucapps.de/mios/ain64_din128_dout128_v1_3.zip
In the mios_tables.inc for example you can read this:
;; 128 buttons and LEDs assigned to MIDI events “B0 00 <value>” to “B0 7F <value>”
;; 64 pots assigned to MIDI events “B1 00 <value>” to “B1 3F <value>”
MIOS_MPROC_EVENT_TABLE
;; entry 0x00-0x0f
MT_ENTRY 0xb0, 0x00
MT_ENTRY 0xb0, 0x01
MT_ENTRY 0xb0, 0x02
MT_ENTRY 0xb0, 0x03
MT_ENTRY 0xb0, 0x04
MT_ENTRY 0xb0, 0x05
MT_ENTRY 0xb0, 0x06
MT_ENTRY 0xb0, 0x07
MT_ENTRY 0xb0, 0x08
MT_ENTRY 0xb0, 0x09
MT_ENTRY 0xb0, 0x0a
MT_ENTRY 0xb0, 0x0b
MT_ENTRY 0xb0, 0x0c
MT_ENTRY 0xb0, 0x0d
MT_ENTRY 0xb0, 0x0e
MT_ENTRY 0xb0, 0x0f
If I´m right, this is what you need.
See also:
http://www.ucapps.de/mios/mios_din_dout_pin_numbers.txt
Here are the din dout nummbers, you´ll need.
Hope that`s all true.
Greetings
Markus