Jump to content

Search the Community

Showing results for tags 'Erweiterung des Routers'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Top
    • Latest News
    • Bulk Orders
  • Construction
    • MIDIbox NG
    • MIDIbox HUIs
    • MIDIbox SEQ
    • MIDIbox SID
    • MIDIbox FM
    • MIDIbox BLM
    • MIDIbox User Projects
    • MIDIfication
    • Design Concepts
    • Parts Questions
    • Testing/Troubleshooting
    • Tips & Tricks
    • MIDIbox Documentation Project
  • Software
    • MIDIbox Tools & MIOS Studio
    • MIOS programming (C)
    • MIOS programming (Assembler)
    • MIOS toy of the week
  • Miscellaneous
    • Fleamarket
    • Sale Requests
    • Miscellaneous
    • Songs & Sounds
  • Archive
    • Parts Archive
    • MIDIbox of the Week
  • Multilingual
    • Nordisk
    • Nederlands
    • Deutsch
    • Français
    • Italiano
    • Español
    • Português
    • Greek
    • Russian
    • Others

Blogs

  • Twin-X's Blog
  • j00lz - MB-6582 Build Log
  • Project "Desire MC1"
  • MIDIbox Live
  • protofuse's Blog
  • Joeri's Blog
  • Phil's MBSEQv4
  • taximan's home base
  • Kyo's Blog
  • Snoozr's Notes on Building an MB-6582
  • Amplification
  • dawidbass' Blog
  • SLP's Blog
  • MidiSax's Blog
  • blog_latenights
  • Non usare un modulo Lcd
  • Duggle's Blog
  • Rics' 4Decks
  • aaa135139's Blog
  • bilderbuchi's Blog
  • Alain6870's Blog
  • MidiMaigre 37
  • Digineural's Blog
  • Sylwester's Blog
  • olga42's Blog
  • MB9090 Blog
  • Zossen's Blog
  • stilz&Rumpel's Blog
  • Antichambre's Blog
  • MB TWINsid Blog
  • massenvernichtungswaffe.de
  • gslug's Blog
  • albpower2seq4sid's Blog
  • TB's MIDIBox Adventures
  • kHz-tone's Blog
  • Blatboy's Blog
  • geth's-building-stuff-Blog
  • Excursions in DIY land
  • Ralex's Blog
  • huanyupcb's Blog
  • Vicentiu Mincior's Blog
  • A journey through midibox LC construction
  • TheAncientOne's Blog
  • nebula's Blog
  • Sasha's Blog
  • Tales from the kit mill
  • novski's
  • nicolas' Blog
  • Gelpearl
  • Johan's Blog
  • midibox.org Blog
  • Wisefire build logs
  • ColleenMorris' Blog
  • brucefu's Blog
  • atribunella's Blog
  • Building my Seq
  • A Seqv4 kind of thing
  • ModulBox
  • ArumBlack
  • mongrol
  • Watch!!- Mission: Impossible – Fallout (HD) Movie Online.Full 4k
  • Watch!!- Hotel Transylvania 3 Summer Vacation (HD) Movie Online.Full 4k
  • Silver eagles sign football gamer Adam Zaruba since restricted stop
  • Watch!!- The Meg (HD) Movie Online.Full 4k
  • Steelkiwi Blog
  • Words1234
  • SSP
  • How to Solve the Excavator Hydraulic System Running Slowly
  • Eight Ways to Maintain Excavator Parts
  • Five Common Problems and Fault Analysis of Komatsu Excavator
  • Ficher Chem Co. Ltd: Buy Research Chemicals Online
  • Zazenergyli
  • Top Mobile App Development Company in USA
  • belkin range extender
  • wrong post

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 1 result

  1. Guten Tag zusammen, als Neuling traue ich mir selber nicht und möchte deshalb hier meine gedachten Änderungen vorstellen. Ziel ist es den Midi-Router um 4 IIC-Ports zu erweitern. Geaendert habe ich folgendes: midi_port.c //RK Erweiterung 4x8 #if MIDI_PORT_NUM_IN_PORTS_IIC >= 1 { IIC0, "<IC1" }, #endif #if MIDI_PORT_NUM_IN_PORTS_IIC >= 2 { IIC1, "<IC2" }, #endif #if MIDI_PORT_NUM_IN_PORTS_IIC >= 3 { IIC2, "<IC3" }, #endif #if MIDI_PORT_NUM_IN_PORTS_IIC >= 4 { IIC3, "<IC4" }, #endif #if MIDI_PORT_NUM_OUT_PORTS_IIC >= 1 { IIC0, ">IC1" }, #endif #if MIDI_PORT_NUM_OUT_PORTS_IIC >= 2 { IIC1, ">IC2" }, #endif #if MIDI_PORT_NUM_OUT_PORTS_IIC >= 3 { IIC2, ">IC3" }, #endif #if MIDI_PORT_NUM_OUT_PORTS_IIC >= 4 { IIC3, ">IC4" }, #endif #if MIDI_PORT_NUM_CLK_PORTS_IIC >= 1 { IIC0, "CIC1" }, #endif #if MIDI_PORT_NUM_CLK_PORTS_IIC >= 2 { IIC1, "CIC2" }, #endif #if MIDI_PORT_NUM_CLK_PORTS_IIC >= 3 { IIC2, "CIC3" }, #endif #if MIDI_PORT_NUM_CLK_PORTS_IIC >= 4 { IIC3, "CIC4" }, #endif midi_port.h //RK Erweiterung 4x8 .._IIC angefuegt // keep these constants consistent with the functions in midio_port.c !!! #define MIDI_PORT_NUM_IN_PORTS (1 + MIDI_PORT_NUM_IN_PORTS_USB + MIDI_PORT_NUM_IN_PORTS_UART + MIDI_PORT_NUM_IN_PORTS_OSC + MIDI_PORT_NUM_IN_PORTS_IIC) #define MIDI_PORT_NUM_OUT_PORTS (1 + MIDI_PORT_NUM_OUT_PORTS_USB + MIDI_PORT_NUM_OUT_PORTS_UART + MIDI_PORT_NUM_OUT_PORTS_OSC + MIDI_PORT_NUM_OUT_PORTS_IIC) #define MIDI_PORT_NUM_CLK_PORTS ( MIDI_PORT_NUM_CLK_PORTS_USB + MIDI_PORT_NUM_CLK_PORTS_UART + MIDI_PORT_NUM_CLK_PORTS_OSC + MIDI_PORT_NUM_CLK_PORTS_IIC) mios32_config.h //Anpassung fuer MIDI-Router 4x8 //RK //Anzahl IIC Ports #define MIOS32_IIC_MIDI_NUM 4 //Definition Out-only #define MIOS32_IIC_MIDI0_ENABLED 1 #define MIOS32_IIC_MIDI1_ENABLED 1 #define MIOS32_IIC_MIDI2_ENABLED 1 #define MIOS32_IIC_MIDI3_ENABLED 1 //Fuer Modul Router Port.h #define MIDI_PORT_NUM_IN_PORTS_IIC 0 #define MIDI_PORT_NUM_OUT_PORTS_IIC 4 #define MIDI_PORT_NUM_CLK_PORTS_IIC 4 Ich hoffe damit alles erweitertet zu haben was notwendig ist, um die IIC-Ports unter MIDIO128 V3 in Betrieb zu nehmen. Bitte an alle mal kritisch drüber zu schauen und nicht mit konstruktiver Kritik sparen. Am Wochenende plane ich das Ganze in Betrieb zu nehmen. Gruss Roman
×
×
  • Create New...