Csound Csound-dev Csound-tekno Search About

[Csnd] Help with OSC receive example.

Date2012-03-03 04:42
FromRoger Kelly
Subject[Csnd] Help with OSC receive example.
I am using this example for OSC on Ubuntu. When I run Csound it does not wait for events?  It works fine on Windows. What is wrong?

<CsoundSynthesizer>

<CsOptions>
</CsOptions>

<CsInstruments>
  sr   =  44100
  ksmps     =  100
  nchnls    =  2

  0dbfs        =  1

  gihandle    OSCinit   1979

    instr 1
ki1 init 0
ki2 init 0
printk .5, ki2
kk  OSClisten gihandle, "/csound", "ii", ki1, ki2
printk .1, ki1
aosc oscili ki1, ki2, 1
outs aosc,aosc
    endin
</CsInstruments>
<CsScore>
f1 0 8192 10 1 
i1 0 100 

</CsScore>

</CsoundSynthesizer>