Re: [PD] gpio on the raspberry pi from within pd ?

2013-01-26 Thread Charles Goyard
Hi, python rpi-gpio uses /dev/mem and thus requires root privileges. Miller Puckette wrote: Me, I was just planning to see how the python-GPIO library does it and make similar Pd externs. But I don't know what I'm doing :) ___ Pd-list@iem.at

Re: [PD] raspberry pi user experience

2013-01-26 Thread Thomas Grill
Hi all, for my USB audio class 2.0 device Native Instruments Komplete Audio 6 i can't report such good news. There is constant irregular crackling, not only with Pd but also with aplay etc. It seems related to USB bandwidth, since turning on and off the inputs in Pd changes crackling frequency.

[PD] OS X /Library/Pd and ~/Library/Pd sub-folders

2013-01-26 Thread Anas Ghrab
Hi all, I've already found this topic on older mails on the list, but the problem is still not resolved : externals placed in sub-folders in /Library/Pd and ~/Library/Pd are not read. They have to be directly in the ~/Library/Pd folder but not in a sub-folder, like ~/Library/Pd/timbreID/ for

Re: [PD] GUI toolkits and custom GUIs WAS: Integra Live 1.5 released

2013-01-26 Thread Bill Gribble
On Fri, 2013-01-25 at 19:30 -0800, Jonathan Wilkes wrote: So inside [blah] let's say I have this: [r foo] | [print I_don_t_want_bob_to_trigger_this] I share my [blah] abstraction with Bob, who creates a [blah] instance in the same patch where he has [Click here to start my thing( |

Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Fero Kiraly
I cant make it. the same error about gem2pdp... fk. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Ivica Bukvic
Is this just on Pd-l2ork or on pd-extended as well? Did you try doing the following: cd externals/gem2pdp aclocal autoconf cd.. make gem2pdp On Jan 26, 2013 12:57 PM, Fero Kiraly fero.kir...@gmail.com wrote: I cant make it. the same error about gem2pdp... fk.

Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Fero Kiraly
cd externals/gem2pdp aclocal configure.ac:41: error: 'AM_PROG_CC_STDC': this macro is obsolete. You should simply use the 'AC_PROG_CC' macro instead. Also, your code should no longer depend upon 'am_cv_prog_cc_stdc', but upon 'ac_cv_prog_cc_stdc'.

Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Ivica Ico Bukvic
This part should then fail on both pd-extended and pd-l2ork since their configure.ac are identical. Can you try to delete line 41 in configure.ac (the one that has AM_PROG_CC_STDC in it) and re-run? On 01/26/2013 01:35 PM, Fero Kiraly wrote: cd externals/gem2pdp aclocal configure.ac:41

Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Fero Kiraly
thats the trick ! just remove the line ... ok, so i now rerun build process will inform you. 2013/1/26 Ivica Ico Bukvic i...@vt.edu This part should then fail on both pd-extended and pd-l2ork since their configure.ac are identical. Can you try to delete line 41 in configure.ac(the one

Re: [PD] OS X /Library/Pd and ~/Library/Pd sub-folders

2013-01-26 Thread Hans-Christoph Steiner
Hey Anas, I'm guessing that the timbreID folder that you have is probably set up as a library, so you have to load the library in your patch. You can do that using either [import timbreID] or [declare -lib timbreID]. Then the library will be loaded and you can use the objects directly. .hc

Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Hans-Christoph Steiner
You might want to do what the warning says and replace AM_PROG_CC_STDC with AC_PROG_CC .hc On 01/26/2013 01:42 PM, Fero Kiraly wrote: thats the trick ! just remove the line ... ok, so i now rerun build process will inform you. 2013/1/26 Ivica Ico Bukvic i...@vt.edu This part should

[PD] undefined symbol: lua_pcall

2013-01-26 Thread Fero Kiraly
I have this error message in the console window on startup: /usr/lib/pd-extended/extra/pdlua/pdlua.pd_linux: /usr/lib/pd-extended/extra/pdlua/pdlua.pd_linux: undefined symbol: lua_pcall ... fk. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and

Re: [PD] raspberry pi user experience

2013-01-26 Thread Thomas Grill
Message to self: it seems that one has to wait for updated RPi USB firmware/drivers to get USB 2.0 audio going. Obviously the isochronous transfer mode as used by audio interfaces is currently broken. gr~~~ 2013/1/26 Thomas Grill g...@g.org Hi all, for my USB audio class 2.0 device Native

Re: [PD] undefined symbol: lua_pcall

2013-01-26 Thread Hans-Christoph Steiner
Is this on Arch? My guess is that you're building against lua 5.2, but pdlua needs to be built against lua 5.1. Or it could be this: http://stackoverflow.com/questions/10959017/where-did-lua-pcall-go-lua-5-2-0-on-osx-lion .hc On 01/26/2013 02:47 PM, Fero Kiraly wrote: I have this error

Re: [PD] undefined symbol: lua_pcall

2013-01-26 Thread Fero Kiraly
thaks for quick reply. I wiil try -- Fero Kiraly www.cluster-ensemble.com ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] ARCH linux pd-extended vs. pd

2013-01-26 Thread Fero Kiraly
friends, thanks a lot, but I dont understand how to apply that... fk. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] RPi audio tips tweaks

2013-01-26 Thread Julian Brooks
Hi Pierre, Thank you for your kind offer. I think I'm going to refocus my Pi experiments and accept that the patch I'm hoping to run is just a bit too meaty for the Pi atm. So next will be to get one of my other regular Pd patches translated to the Pi (for an envisioned installation) and also

Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Ivica Ico Bukvic
On 01/26/2013 01:42 PM, Fero Kiraly wrote: thats the trick ! just remove the line ... ok, so i now rerun build process will inform you. This has been already committed to the latest git and is available as part of the 20130126 snapshot together with the pd~ fix. 2013/1/26 Ivica Ico Bukvic

Re: [PD] gpio on the raspberry pi from within pd ?

2013-01-26 Thread Miller Puckette
Since writnig that I think I found a good toolset and C api, called WiringPi, on: https://projects.drogon.net/raspberry-pi/wiringpi/ cheers Miller On Sat, Jan 26, 2013 at 10:29:17AM +0100, Charles Goyard wrote: Hi, python rpi-gpio uses /dev/mem and thus requires root privileges. Miller

Re: [PD] GUI toolkits and custom GUIs WAS: Integra Live 1.5 released

2013-01-26 Thread Jonathan Wilkes
- Original Message - From: Bill Gribble g...@billgribble.com To: Jonathan Wilkes jancs...@yahoo.com Cc: Lorenzo Sutton lorenzofsut...@gmail.com; pd-list@iem.at pd-list@iem.at Sent: Saturday, January 26, 2013 11:01 AM Subject: Re: [PD] GUI toolkits and custom GUIs WAS: Integra Live

Re: [PD] gpio on the raspberry pi from within pd ?

2013-01-26 Thread Billy Stiltner
sounds like you guys are programming pic microcontrollers On Sat, Jan 26, 2013 at 6:34 PM, Miller Puckette m...@ucsd.edu wrote: Since writnig that I think I found a good toolset and C api, called WiringPi, on: https://projects.drogon.net/raspberry-pi/wiringpi/ cheers Miller On Sat, Jan