ich suche eine Applikation für eine MidiBox CV mit 1xCore,1xDIN,2xAout_LC für 4xCV und 8xGate.
4 Buttons oder 2 Buttons+Encoder ist egal.
Da ich nicht der Programmierer bin,wollte ich mal fragen,ob hier jemand schonmal eine solche Applikation programmiert hat und sie mir evtl. überlassen könnte.
Im Gegenzug könnte ich dann z.B. nen Lötjob übernehmen!
es ist ja eigentlich schon alles fertig programmiert, Du musst die MIDIbox CV Applikation nur noch konfigurieren: in in main.asm die Zeilen
; use PORTA and PORTE (J5 of the core module) for 8 additional gate outputs
#define ENABLE_J5 0
;
; define the AOUT interface which is used here:
; 1: one MBHP_AOUT module
; 2: up to 4 (chained) MBHP_AOUT_LC modules
; all other values invalid!
#define DEFAULT_AOUT_INTERFACE 1
[/code]
umaendern in:
[code]
; use PORTA and PORTE (J5 of the core module) for 8 additional gate outputs
#define ENABLE\_J5 1
;
; define the AOUT interface which is used here:
; 1: one MBHP\_AOUT module
; 2: up to 4 (chained) MBHP\_AOUT\_LC modules
; all other values invalid!
#define DEFAULT\_AOUT\_INTERFACE 2
und dann ein neues main.hex nach dieser Anleitungen bauen: