it may be my lack of musical knowledge, but how does the JI OP work?
(having a lot of fun with STATE btw)
it may be my lack of musical knowledge, but how does the JI OP work?
(having a lot of fun with STATE btw)
@galapagoose requested JI and i coded it blind, i have a sense of its use, but perhaps he can fully elaborate
and yes, @trickyflemming i do need to add some debug output to the USB methods to help everyone having issues-- specifically because i havenāt been able to replicate the issue
I have also tried a cheap card reader, with a SD card formatted as FAT32, and it still doesnāt work. Iām giving up (again). Maybe Compact Flash are supposed to work, and SD not? This is very strange. But right now I canāt be bothered buying another adapter for a CF card, just to find out it doesnāt work either.
I wonder if changing the āallocation unit sizeā, when formating the memory card as FAT32, will make any difference. But without a PC at home, itās going to take me a while to go through all the different sizes available, to see if that makes any difference to Teletype.
Has anyone else had the II commands stop working after updating to 1.1?
I have had some issues with MP II commands.
Also, noticed some broader problems with II commands with my BETA install of TT1.1 most of which went away when i installed the current version of TT1.1
Iām going to make sure I donāt have the beta of 1.1 installedā¦thanks.
Holy f@ck! Teletype plus p.mode and some rand reset action is such a party.
@tehn
I need some information about the SCRIPT command priority. If i write something like that:
1:
SCRIPT 2
TR.PULSE 1
will TT jump to SCRIPT 2 and then jump back to SCRIPT 1 to finish the script (so TR.PULSE 1)? And will it still go to SCRIPT 2 then 3 then 4⦠after that ?
Second question, what will happen if i do that:
1:
L 0 9 : SCRIPT 2
TR.PULSE 1
Will TT execute SCRIPT 2 x10 and come back to SCRIPT 1 to trigger pulse or will it continue to SCRIPT 3 - 4 ⦠x 10 and come back to SCRIPT 1 to TR.PULSE 1 ???
I think thatās right.
Are they all being triggered simultaneously? Whatās telling them to go? (Sorry if Iām muddying the waters but Iād only expect TT to run 2, 3, 4,⦠if told to do so via a trigger in or a SCRIPT
command but I thikn Iām missing something in your question!)
Related to scripts, playing with the latest bits (admittedly not on the device but stillā¦) and Iād expect SCRIPT I
and SCRIPT M
to work but they donāt seem to. Should they?
those are not implemented. I and M would need to be special keywords in the programming language, and they are both taken with other functions. iāve considered adding INIT
which would be the same as SCRIPT (init)
but manual metro seems unneeded, especially once the AT features are added.
Ah, thanks @tehn! Iām often wanting more scripts so I like the idea of repurposing where possible. Semantically manually triggering INIT
makes sense in some patches too as a kind of āhomeā or āresetā. I see what you mean about METRO
though. That said, many of my scenes donāt use metro at all so in the best case the METRO
slot would be up for grabs too. FWIW, I half expected SCRIPT 9
and SCRIPT 10
to ājust workā as those indexes would correspond to METRO_SCRIPT
and INIT_SCRIPT
in main.c
respectively. Maybe, as an easter egg they could?