MidiBox CV-Applikation gesucht

Hallo zusammen,    ;D

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.   :slight_smile:

Im Gegenzug könnte ich dann z.B. nen Lötjob übernehmen!

Greetz

Brother303

Hallo,

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:

http://www.ucapps.de/howto_tools_mpasm.html

Gruss,

        Thorsten.

Hi Thorsten!    :slight_smile:

Erstmal danke für die prompte Antwort.Bin leider totaler Neuling,was programmieren angeht.

Hab zwar schon diverse Synths gebaut(x0xb0x,Simplesizer etc.),hab mich aber bislang noch nie mit der PIC/Mios Materie beschäftigt.  ::slight_smile:

Aber ich denke mit etwas support aus diesem Forum werd ich das auch noch hinkriegen…

Auf in den Kampf!!!  ;D

Greetz

Brother303