- Edited
First time poster here and happy new year to all!
There is a SuperCollider plugin to read MAX3010x sensor data over i2c that I'd like to use with a Bela: https://github.com/kasparsj/sc-max3010x
Is there a way to tell what changes (if any) will be required to successfully build this for Bela? Also, I have never built a UGen before and am curious if the instructions from this thread are still valid:
cd /root/<plugin directory>
mkdir build
cd build
cmake -DSC_PATH=/root/supercollider -DCMAKE_C_FLAGS="-march=armv7-a -mtune=cortex-a8 -mfloat-abi=hard -mfpu=neon -O2" -DCMAKE_CPP_FLAGS="-march=armv7-a -mtune=cortex-a8 -mfloat-abi=hard -mfpu=neon -O2" ..
make
make install
I'm not sure if it matters, but I am using experimental Bela image v0.5.0alpha2 (required for running FluCoMa).
Appreciate the assistance!