Ok this is firstly a CSound Question:
I’m trying to connect Iannix with CSound and in special with Cabbage.
So I’m have coded and selected together a easy Script.
<CsoundSynthesizer>
<CsOptions>
-odac -iadc ;;;RT audio I/O
</CsOptions>
<CsInstruments>
; Initialize the global variables.
ksmps = 32
nchnls = 2
0dbfs = 1
;instrument will be triggered by keyboard widget
instr 1
kf1 init 0
kf2 init 0
iTest OSCinit 57120
kTrig metro 2
if kTrig == 1 then
; kk OSClisten iTest, "/cursor", "ff", kf1, kf2
endif
endin
</CsInstruments>
<CsScore>
;causes Csound to run for about 7000 years...
i1 0 15
</CsScore>
</CsoundSynthesizer>
And I’m geth this error
error: syntax error, unexpected T_IDENT (token “OSCinit”) from file Test001.cs (1)
line 17:
iTest OSCinit <<<
Unexpected untyped word iTest when expecting a variable
And i not know what is wrong