Turnoff Segmentation Fault
Date | 2016-02-27 02:08 |
From | Emmett Palaima |
Subject | Turnoff Segmentation Fault |
Hi, I'm working on building a live audio processing unit during csound, the idea is to make something of a multi-effect, so I was experimenting with using external buttons to turn on and off the different instruments in an orchestra used for processing. Everything works great, but I'm finding that when I use the turnoff opcode, regardless of context, I get a segmentation fault. I have tried making sure the instruments are on beforehand, using the turnoffs both inside and outside of the different instruments and loops, but the result is always the same. Any ideas to why this might be? Quite a frustrating problem.
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
I use python to read whether two buttons I have set up have been pressed, but I have tried the same python code in other situations and it has worked perfectly, so I'm certain thats not the reason. Any help is much appreciated. Code: <CsoundSynthesizer> <CsOptions> -odac:hw:1,0 -iadc:hw:1,0 ;-b 512 ;-B 512 ;-+rtaudio= </CsOptions> <CsInstruments> sr = 48000 ksmps = 128 nchnls = 2 0dbfs = 1.0 turnon 1 pyinit instr 1 ;kout init k1 init 0 k2 init 0 pyruni "a = 0.0" pyruni "b = 0.0" pyruni{{ import RPi.GPIO as GPIO #GPIO.cleanup() GPIO.setmode(GPIO.BCM) GPIO.setup(4, GPIO.IN, pull_up_down = GPIO.PUD_DOWN) GPIO.setup(24, GPIO.IN, pull_up_down = GPIO.PUD_UP) }} pyrun{{ if(GPIO.input(4) ==1): #print 'Button 1 Pressed' a = 1.0 b = 0.0 if(GPIO.input(24) ==0): #print 'Button 2 Pressed' a = 0.0 b = 1.0 print a print b }} k1 pyeval "a" k2 pyeval "b" printk 1, k1 printk 1, k2 if (k1 == 1) then turnon 2 turnoff 3 endif if (k2 == 1) then turnon 3 turnoff 2 endif endin instr 2 kgain invalue "Gain" ain, ain2 ins arv, arv2 reverbsc ain, ain2, 0.9, 12000 out arv+ain, arv+ain endin instr 3 kgain invalue "Gain" ain, ain2 ins outs ain, ain2 endin </CsInstruments> <CsScore> ;i 1 0 10000 ;i 2 0 10000 </CsScore> </CsoundSynthesizer> |
Date | 2016-02-27 07:15 |
From | Tarmo Johannes |
Subject | Re: Turnoff Segmentation Fault |
Does the same happen when you use turnoff2 ? 27.02.2016 4:08 kirjutas kuupäeval "Emmett Palaima" <epalaima@berklee.edu>:
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
|
Date | 2016-02-29 15:39 |
From | Jimmy Manone |
Subject | Re: Turnoff Segmentation Fault |
It may be possible that each instrument needs to be able to go back to the python functions (if what I am saying makes sense). Instrument 1 reads the python polling, but it doesn't look like the others do. On Feb 26, 2016 6:08 PM, "Emmett Palaima" <epalaima@berklee.edu> wrote:
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
|
Date | 2016-03-01 08:05 |
From | Emmett Palaima |
Subject | Re: Turnoff Segmentation Fault |
I actually found out the problem was I need to use turnoff 2 when not refering to a specific instance. I did find that brought up some entirely new issues however, just sent those to the listserv. On Mon, Feb 29, 2016 at 10:39 AM, Jimmy Manone <jimmanone@gmail.com> wrote:
|