- Edited
Hi all,
I am somewhat at loss at how is OSC supposed to be used in Bela.io.
First, I tried using a Bela with older image ("Bela release image, v0.2.0b, 15 December 2016
"):
root@bela ~$ uname -a
Linux bela 3.8.13xenomai-bone41 #2 Wed Mar 26 11:41:31 GMT 2014 armv7l GNU/Linux
Then, I tried to build both the oscx
([dumpOSC]
, [OSCroute]
and [sendOSC]
) and (... since oscx
complains that its deprecated, and itself recommends instead ... ) the mrpeach
([udpreceive]
, [unpackOSC]
, [routeOSC]
, [packOSC]
) PD external objects on the Bela itself; this passed, and I copied the relevant *.pd_linux
and possible *.so
files in a /root/Bela/projects/pd-externals
folder on the Bela.
Then, I made a new test project on the Bela, copied to my PC, edited the _main.pd
there to make a patch that uses them to be a server and receive OSC, and copied this back to the Bela. Ran the PD patch on the Bela, started the OSC client on my PC that sends OSC messages to 192.168.7.2 - everything worked without a problem, messages received, no errors. (I did this in two rounds - first a PD patch that exclusively uses the oscx
objects, then changed the PD patch so it exclusively uses the mrpeach
ones - everything worked fine in both cases).
Now I'm trying to do the same on another Bela, that has "Bela image, v0.3.1, 8 November 2017
":
root@bela:~# uname -a
Linux bela 4.4.87-ti-xenomai-r121 #1 PREEMPT Wed Oct 25 17:50:16 BST 2017 armv7l GNU/Linux
Did the exact same procedure. So, when having a server listener and OSC receiver in the PD patch using mrpeach
objects, as soon as the PD patch is ran on the Bela, I get:
2445 mode switches detected on the audio thread!
Underrun detected: 1 blocks dropped
5227 mode switches detected on the audio thread!
Underrun detected: 1 blocks dropped
8006 mode switches detected on the audio thread!
Underrun detected: 1 blocks dropped
...
... and once I start sending OSC messages from the PC client, I get something like:
...
error: udpreceive_read: Bad file descriptor (9)
errerror: udpreceive_read: Bad file descriptor (9)
272154 mode switches detected on the audio thread!
...
When I change the PD patch to use oscx
objects instead of mrpeach
, again I get the "mode switches detected on the audio thread" and "Underrun detected" - except this time, I never get any indication that any sort of message has been received, when I send OSC messages from the client on the PC!
So, does anyone have any idea why this happens - and how can I get OSC to work in the Bela with the newer kernel image?
I tried to find some info on OSC with PD on Bela, and now I'm even more puzzled:
- https://forum.bela.io/d/492-pd-crashes-with-osc -> this thread shows some C++ code; AFAIK PD externals are programmed in C, so I really cannot tell how this code would interface with a PD patch running on the Bela?! Same thread refers to https://github.com/BelaPlatform/Bela/issues/366 "OSCClient::queueMessage causes mode switches", but that's for C++, not PureData?!
- https://forum.bela.io/d/25-hooking-up-an-lcd/2 -> "You can do that from C++ code using Bela's built-in OSC classes ... or from pd in the normal way." ... except I cannot really tell what this "normal way" refers to; later on the same thread, https://web.archive.org/web/20170823053915/http://www.aaronfryklund.com/wp/tutorial-opensoundcontrol-in-puredata/ is reffered ("it's very common to send OSC messages from PD, see here for an example"), which uses
[dumpOSC]
and thus theoscx
PD externals; could it be that these are included in the PD of Bela.io? That puzzles me even more, because as far as I've understood, Bela actually useslibpd
, without any externals included, and no OSC objects are included in PD vanilla...
Since my process of building PD externals on the Bela worked fine on a Bela with an earlier kernel image, I guess it should be possible to do on a Bela with a newer kernel image - except, I cannot tell how?! Could anyone help me get this running on a newer image?
Many thanks in advance for any clarifications regarding this!