
stryd_one
Frequent Writer-
Posts
8,840 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Blogs
Gallery
Everything posted by stryd_one
-
Yeh that beauty got me hooked when I heard it on his site... I bought the chip 10 minutes later ;)
-
I wonder if anyone's thought about using pd instead of MAX? It's nice to make the patch open source, but if you need a very expensive app to run it, that doesn't help ;)
-
I see those all the time :) I don't know if you ever used them, but the keys were flimsy at best, and that was 20 odd years ago....
-
Maybe time to clear your local cache mate.... also try logging out first...
-
You know your a total geek when..
stryd_one replied to moogah's topic in MIOS programming (Assembler)
Baaahahah thanks mate :D -
Those are discontinued and really really expensive... If you can find me one, I'll be happy to help out ;)
-
Laptop Noise Problem - Quattro users pls help!
stryd_one replied to DavidBanner's topic in Testing/Troubleshooting
Hope your back gets better soon mate. Hey have you called Toshiba about this? Edit: If it's still under warranty, they should replace it with another model without the problem, which is at least as good as yours, or better :) -
@AC: I haven't forgotten them, they're on the way. Many of the 'ethnic' and 'jazz' scales are my favourites, so I'll definitely do all of them :) It will be all finished very soon. That would be excellent. I also really like your idea of having that feature (and other harmony type stuff) in a dedicated core. AWESOME! That will open a lot of new possibilities!
-
I didn't think so :) It didn't seem your style, you're always nice and friendly. I knew I had to be mistaken, my apologies.
-
Coding CS handler in C (use of functions pointers?)
stryd_one replied to mess's topic in MIOS programming (C)
Re: your edit - that's not a reproducible fault, which means it is probably user error, not a bug -
Coding CS handler in C (use of functions pointers?)
stryd_one replied to mess's topic in MIOS programming (C)
hey 2.6 is out at last! that's great news, long awaited! TK is right to recommend 2.5.0, as it is the only known working solution, but so far I have used nightly builds without any issues (in fact, one section of some test code I did required nightly builds rather than 2.5.0). Most of the instabilities are gone now, and with 2.6 being final, I think it should be safe... -
I know what bouncing means, and that's what it sounded like you were describing. You said " it registers more keys than i press". I'm sure you can see that could sound like you're saying that when you press a button it registers more button presses than you make (which, as we know, is a bounce) No, you didn't. debounce timers and scan rates are not the same.... Glad to hear you figured it out (and followed the wiring diagrams ;) ) but I don't much like the tone you've taken with me. Maybe it's just one of those occasions where a post sounds rude but isn't meant that way?
-
Scanning matrix? Might need to scan faster....
-
Coding CS handler in C (use of functions pointers?)
stryd_one replied to mess's topic in MIOS programming (C)
I assume you included TK's library? Tried a SDCC nightly build? -
Here's enough to get started I guess.... I have checked this for errors, but that doesn't mean I got them all, so if something doesn't sound right, I probably made a mistake... SEQ_SCALE_TABLE ;; 0 1 2 3 4 5 6 7 8 9 10 11 ;; C C# D D# E F F# G G# A A# B SCALE_ENTRY 0, 0, 2, 2, 4, 5, 5, 7, 7, 9, 9, 11 ; Major SCALE_ENTRY 0, 0, 2, 3, 3, 5, 5, 7, 7, 9, 9, 11 ; Minor SCALE_ENTRY 0, 0, 2, 3, 3, 5, 5, 7, 8, 8, 8, 11 ; Harmonic Minor SCALE_ENTRY 0, 0, 2, 3, 3, 5, 5, 7, 7, 9, 9, 11 ; Melodic Minor SCALE_ENTRY 0, 0, 2, 2, 2, 5, 5, 7, 7, 9, 9, 9 ; Pentatonic Major SCALE_ENTRY 0, 0, 0, 3, 3, 5, 5, 7, 7, 7, 10, 10 ; Pentatonic Minor SCALE_ENTRY 0, 0, 0, 3, 3, 5, 6, 7, 7, 7, 10, 10 ; Pentatonic Blues SCALE_ENTRY 0, 0, 2, 2, 2, 5, 5, 7, 7, 7, 10, 10 ; Pentatonic Neutral SCALE_ENTRY 0, 0, 2, 2, 4, 5, 5, 7, 7, 9, 9, 11 ; Ionian SCALE_ENTRY 0, 1, 1, 3, 3, 5, 6, 6, 8, 8, 10, 11 ; Aeolian Wrapped to 1 8ve SCALE_ENTRY 0, 0, 2, 3, 3, 5, 5, 7, 7, 9, 10, 10 ; Dorian SCALE_ENTRY 0, 0, 2, 2, 4, 5, 5, 7, 7, 9, 10, 10 ; Mixolydian SCALE_ENTRY 0, 1, 1, 3, 3, 5, 5, 7, 8, 8, 10, 10 ; Phrygian SCALE_ENTRY 0, 0, 2, 2, 4, 4, 6, 7, 7, 9, 9, 11 ; Lydian SCALE_ENTRY 0, 1, 1, 3, 3, 5, 6, 6, 8, 8, 10, 10 ; Locrian SCALE_ENTRY 0, 1, 1, 3, 4, 4, 6, 7, 7, 9, 10, 10 ; Dim half SCALE_ENTRY 0, 0, 2, 3, 3, 5, 6, 6, 8, 9, 9, 11 ; Dim whole SCALE_ENTRY 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10 ; Whole SCALE_ENTRY 0, 0, 0, 3, 4, 4, 4, 7, 8, 8, 8, 11 ; Augmented SCALE_ENTRY 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 ; Chromatic SCALE_ENTRY 0, 0, 2, 3, 3, 3, 6, 7, 7, 9, 10, 10 ; Roumanian Minor SCALE_ENTRY 0, 1, 1, 1, 4, 5, 5, 7, 8, 8, 10, 10 ; Spanish Gypsy SCALE_ENTRY 0, 0, 0, 3, 3, 5, 6, 7, 7, 7, 10, 10 ; Blues SCALE_ENTRY 0, 0, 2, 2, 4, 4, 4, 7, 7, 9, 9, 9 ; Diatonic SCALE_ENTRY 0, 1, 1, 1, 4, 5, 5, 7, 8, 8, 8, 11 ; Double Harmonic SCALE_ENTRY 0, 1, 1, 3, 4, 5, 6, 6, 8, 8, 10, 10 ; Eight Tone Spanish SCALE_ENTRY 0, 1, 1, 1, 4, 4, 6, 6, 8, 8, 10, 11 ; Enigmatic SCALE_ENTRY 0, 0, 2, 2, 4, 4, 6, 6, 8, 9, 10, 10 ; Leading Whole Tone SCALE_ENTRY 0, 0, 2, 2, 4, 4, 6, 6, 8, 9, 9, 11 ; Lydian Augmented SCALE_ENTRY 0, 1, 1, 3, 3, 5, 5, 7, 7, 9, 9, 11 ; Neopolitan Major SCALE_ENTRY 0, 1, 1, 3, 3, 5, 5, 7, 8, 8, 10, 10 ; Neopolitan Minor SCALE_ENTRY 0, 1, 1, 3, 3, 3, 6, 6, 6, 6, 10, 11 ; Pelog SCALE_ENTRY 0, 0, 2, 2, 4, 4, 6, 6, 6, 9, 10, 10 ; Prometheus SCALE_ENTRY 0, 1, 1, 1, 4, 4, 6, 6, 6, 9, 10, 10 ; Prometheus Neopolitan SCALE_ENTRY 0, 1, 1, 1, 4, 5, 5, 5, 8, 9, 9, 9 ; Six Tone Symmetrical SCALE_ENTRY 0, 1, 1, 3, 4, 4, 6, 6, 8, 8, 10, 10 ; Super Locrian SCALE_ENTRY 0, 0, 2, 2, 4, 4, 6, 7, 8, 8, 10, 10 ; Lydian Minor SCALE_ENTRY 0, 0, 2, 3, 3, 3, 6, 7, 8, 8, 10, 10 ; Lydian Diminished SCALE_ENTRY 0, 0, 2, 3, 4, 4, 6, 7, 8, 9, 9, 11 ; Nine Tone Scale SCALE_ENTRY 0, 0, 2, 3, 3, 5, 6, 6, 8, 9, 9, 11 ; Auxiliary Diminished SCALE_ENTRY 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10 ; Auxiliary Augmented SCALE_ENTRY 0, 1, 1, 3, 4, 4, 6, 7, 7, 9, 10, 10 ; Auxiliary Diminished Blues SCALE_ENTRY 0, 0, 2, 2, 4, 5, 6, 6, 8, 8, 10, 10 ; Major Locrian SCALE_ENTRY 0, 0, 2, 2, 4, 4, 6, 7, 7, 9, 10, 10 ; Overtone SCALE_ENTRY 0, 1, 1, 3, 4, 4, 6, 6, 8, 8, 10, 10 ; Diminished Whole Tone SCALE_ENTRY 0, 0, 2, 3, 3, 5, 5, 7, 8, 8, 10, 10 ; Pure Minor SCALE_ENTRY 0, 0, 2, 2, 2, 5, 5, 7, 7, 9, 10, 10 ; Dominant 7th Notice that the aeolian scale requires two octaves in complete form, so I have wrapped it around one octave. the 2 8ve one has been removed from this table. All the 'ethnic' type scales are on the way soon :)
-
NICE :D (sorry for english)
-
Oh just FYI, I've finished all of the common (and a lot of uncommon) scales, I now have to do all those weird ethnic ones and then the chords.... I have to say, I made a few errors which I found during the checking, and I can see how easily errors can sneak in to this.... My mind is swimming with intervals, I can't think of anything else :P 1 2 3 2 3 1 1 2 3 1 2 3 2 1 3 2 2 3 2 1 11 2 3 2 2 3 2 3 2 3 2 3 2 2 2 1 2 3123123 13 2312333212321112231233321 2312321233121313223 13231312332131131231321313 0000000 0000000000000000000000000000000 000000000000000000 0000000000000000000000
-
This would be a separate matter... I think that's already there ;)
-
Hi bluem welcome to the forum. If you check the pages at www.ucapps.de or use the search feature of the forum or the wiki (links above) you will find you answer :) You want a 2x20 or 2x40 CLCD with a HD44780 or compatible driver.
-
DIY illuminated buton, Datawheel for the MIDIbox Community
stryd_one replied to moxi's topic in Parts Archive
Just a suggestion... if you bend the legs on the LEDs in a certain way, it can reduce the stress placed on the solder joint... Try this: _____ stress will go here | v __ / \ XXXXXX | | X cap X | |__xxxxxxxxxxx | *TACT* =|========|==|========= PCB V V V ^ |______ relieves stress here (not to scale) ;) -
Building velocity-sensitive polysynth using 2xMidiBox CV
stryd_one replied to adamstan's topic in MIDIfication
If you're asking what I thinik you are, you could do that with one midibox...? Why two? -
That sounds like a debounce problem.... Have you tried adjusting it? Look for DEFAULT_SRIO_DEBOUNCE_CTR in your main.asm....
-
Thx mate, I get that bit, but notice that mine shows A and A# to be note 9, but TK's shows it to be note 10... (for the minor scale.... but the other scales had something similar) I think yours says note 9 also? I am guessing that TK threw that message together quickly and made a typo (happens to me a lot!), but I don't wanna go tabulating all these scales and then find out that I got it twisted ;)
-
hmm, I've hit a spot here.... Maybe I've misunderstood the implementation of your tables TK, can you explain... For EG C Minor Scale: Everywhere seems to agree that the scale should be: intervals: 1,2,b3,4,5,6,7 half-steps: 2-1-2-2-2-2-1 notes: C,D,D#,F,G,A,B TK, your minor scale seems like it's notes: C,D,D#,F,G,A#,B I thought it was a typo or something, but the other scales have the same thing (except the major). I've put the original and what I thought it should be, but there's a good chance that I've missed something... Can you tell me if I got it right? SEQ_SCALE_TABLE ;; 0 1 2 3 4 5 6 7 8 9 10 11 ;; C C# D D# E F F# G G# A A# B ;; TK's SCALE_ENTRY 0, 0, 2, 2, 3, 5, 5, 7, 7, 10, 10, 11 ; Minor ;; Should that be: v v SCALE_ENTRY 0, 0, 2, 3, 3, 5, 5, 7, 7, 9, 9, 11 ; Minor