Jump to content

TK.

Administrators
  • Posts

    15,193
  • Joined

2 Followers

About TK.

  • Birthday 11/17/1972

Contact Methods

  • Website URL
    http://www.uCApps.de

Profile Information

  • Gender
    Not Telling
  • Location
    Germany

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

TK.'s Achievements

MIDIbox Guru

MIDIbox Guru (4/4)

0

Reputation

  1. How could I reproduce this issue? Could you please give step-by-step instructions? Best Regards, Thorsten.
  2. It might be possible to hack this into the firmware, do you have a compiler setup ready? Best Regards, Thorsten.
  3. Does it work at your side? I noticed that the change wasn't working with the "selection row" of the MIDIphy front panel, now fixed here: -> http://www.ucapps.de/mios32/midibox_seq_v4_098_pre2.zip Best Regards, Thorsten.
  4. Interesting timing of this posting: recently I noticed a very similar problem and hacked a quick change into the firmware to move forward. Let's make it official :-) -> http://www.ucapps.de/mios32/midibox_seq_v4_098_pre1.zip From the ChangeLog: MIDIboxSEQ V4.098 ~~~~~~~~~~~~~~~~~ o Phrase Mode: if Option 3/33 "Pattern Change Synchronization" is activated, patterns will start from step 1 after song position change. This is especially useful if phrases contain tracks with different lengths. Option 5/33 "Restart all Tracks on Pattern Change" should be disabled in this case because it won't lead to the intended results. Best Regards, Thorsten. P.S.: I removed your first posting because it seems to be a duplicate
  5. Hi Christian, I agree that your keyboard doesn't handle Note-Off messages correctly. According to the MIDI Spec (-> https://web.archive.org/web/20071005165318fw_/http://www.borg.com/~jglatt/tech/midispec/noteoff.htm ) the default velocity should be 64 if not supported, but it sends 0 instead. Your other keyboard sends 127, which is actually also wrong if it doesn't support this feature - but somehow works better. Actually it's recommended that keyboards send Note On with velocity 0 to turn off the note, because this keeps the runtime status, ensures that no extra byte has to be sent out and therefore saves some time (ca. 320 uS) Behringer Neutron: either sets a very long release time (e.g. for VCA envelope) with Note Off Velocity 0, or it doesn't handle Note Off correctly -- 0 is a valid value and if there is no special processing for this velocity value, it should be handled like any other. This would add +1 mS latency, which is acceptable. Best Regards, Thorsten.
  6. Hi Bartosz, the entire history is in github, which means that in your downloaded repository you could switch back to the sources which were used for v1.036 The appr. commit was 6edfcd51ad6cb78f83d6094c5c9d1b7c5b85ddb3 So, just enter "git checkout 6edfcd51ad6cb78f83d6094c5c9d1b7c5b85ddb3" to switch back. There are also ways to compare the "good version" with the latest one, e.g.: https://github.com/midibox/mios32/compare/6edfcd51ad6cb78f83d6094c5c9d1b7c5b85ddb3..master Or you could clone the repository two times, switch one to the good version, and then use a diff tool such as "beyond compare" to analyze the changes: Best Regards, Thorsten.
  7. Hi, you could send values from the Tick() hook - by using a static variable you can ensure that the values will only be sent once after startup. Something like this (untested code) ///////////////////////////////////////////////////////////////////////////// // This function is called by MIOS in the mainloop when nothing else is to do ///////////////////////////////////////////////////////////////////////////// void Tick(void) __wparam { static unsigned char ain_sent = 0; if( ain_sent == 0 ) { unsigned char pin; unsigned char num_ain = MIOS_AIN_NumberGet(); ain_sent = 1; // only sent once after startup for(pin=0; pin < num_ain; ++pin) { MIOS_MIDI_TxBufferPut(0xb0); // CC at channel 1 MIOS_MIDI_TxBufferPut(pin); // pin number corresponds to CC number MIOS_MIDI_TxBufferPut(MIOS_AIN_Pin7bitGet(pin)); } } } Best Regards, Thorsten.
  8. Hi Stahl, thanks for the confirmation, the comment is corrected now in the source code Best Regards, Thorsten.
  9. Discussions about Wavetables now here:
  10. Great! New v2.046 version now officially released :) Best Regards, Thorsten.
  11. (Almost) well done! :) I would propose to define a 13th step (at position #12) which transposes by +0 (-> no transpose), and to set the loop point there. This ensures it won't be transposed further. Alternatively try Oneshot mode. yes Are you using this PSU? https://www.c64psu.com/c64psu/43-commodore-64-c64-psu-power-supply.html#/37-ac_cable-eu I noticed that the 5V output sometimes only delivers ca. 4.5V, which is too low and can cause random glitches. Also display backlight becomes darker. Power-cycling the PSU normally helps to get it stable again. Best Regards, Thorsten. P.S.: I will move the wavetable topic to a separate thread, because it's unrelated to the Ctrlr Panel
  12. The links listed here: http://ucapps.de/midibox_sid_manual.html are working at my end - which page do you mean exactly? Yes, I'm aware that WTs are harder to program. People have to learn hexadecimal numbers... a good GUI design could hide this complexity and make WTs more accessible, but 1) Ctrlr limitations have to be considered and 2) it has to be consider that actually 4 wavetables are available with inididual start/end/loop point which can be anywhere in the 128 steps table. If you limit such features just to simplify the GUI (like in Insidious), it would mean that WTs in some patches can't be edited properly. Hence we need a solution which is easy to use and universal enough. Concerning usage examples: did you already find the "first steps" guide - search for "Wavetable Sequencer": http://ucapps.de/midibox_sid_manual_fs.html There are also some legacy tutorials for MBSID V1 which show how to work with arpeggios: http://ucapps.de/howto_sid_wavetables_2.html http://ucapps.de/howto_sid_wavetables_3.html Best Regards, Thorsten.
  13. Thank you both - as you noticed, I'm solving some topics, but please don't expect too much in the next months, I just want to ensure that we are still able to play with our MIDIboxes (and of course enhance them) the next years Need some time to think about this - The MBSIDV2 WT handler offers much more flexibility than the Reaktor based solution, and such a nice looking GUI won't be possible to implement with the given capabilities of Ctrlr. So, it's already clear: if I come up with a solution, it will be very pragmatic... Best Regards, Thorsten.
  14. Interesting! You are totally right, and it seems that nobody complained about this before, resp. if so it didn't raise my attention ;-) It's fixed now, please try: http://www.ucapps.de/mios/midibox_sid_v2_046.zip I think that I should also release this version, the official one is v2_044, but some minor changes have been done in the last years so that it's worth to make it available for everybody who uses the pre-built version. Please let me know if it works with your hardware. Best Regards, Thorsten.
  15. TK.

    Ssd1322

    Ok, I've to admit that I haven't checked the current state of the driver before my reply Unfortunately it isn't available - last posting about this activity was more than 10 years ago: I fear that nobody can help you to get it running :-( Best Regards, Thorsten.
×
×
  • Create New...