giuliomoro I did change that in the project settings from the IDE. Now I'm getting a crash (it's Pyo and Python embedded in C++). I'll start a new discussion on this one. Thanks.
The settings.json file though changed significantly. Now it contains this:
{
"version": 2,
"parameters": {
"blockSize": 32,
"bitDepth": 24,
"sampleRate": 48000,
"analogChannels": 8,
"uniformSampleRate": true,
"useAnalog": true,
"useDigital": true,
"muteSpeaker": false,
"disableLED": false,
"headphoneGains": [
null,
null,
null,
null,
null,
null,
null,
null
],
"userArguments": "",
"makeParameters": "CPPFLAGS=-I/usr/include/python3.11 -I/usr/include/aarch64-linux-gnu/python3.11 -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g0 -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -fwrapv -O3 -Wall -Wstrict-prototypes;LDFLAGS=-L/usr/lib/python3.11/config3.11-aarch64-linux-gnu -L/usr/lib;LDLIBS=-lpython3.11 -lpthread -ldl -lutil -lm -Xlinker -export-dynamic -Wl,-O2 -Wl,-Bsymbolic-functions",
"multiplexer": 0,
"audioExpander": false,
"y": [],
"z": [],
"adcLatency": 8,
"dacLatency": 9,
"equalLatency": false,
"audioInputChannelSettings": [
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
},
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
},
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
},
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
},
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
},
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
},
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
},
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
},
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
},
{
"impedance": "10k",
"couplingAndInput": "AC single-ended",
"gain": null
}
],
"audioOutputChannelSettings": [
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
},
{
"meterStyle": "AC",
"gain": -6
}
],
"globalInputGainControl": {
"enabled": false,
"gain": 0
},
"globalOutputGainControl": {
"enabled": false,
"gain": 0
},
"inputMicBias": "2.75V",
"recordOptions": {
"signalsToRecord": {
"audioOut": true,
"audioIn": true,
"sensors": true,
"digitalIO": true
},
"recordEveryTimeProgramStarts": false
},
"playOptions": {
"audioIn": {
"override": false,
"file": "",
"loop": false
},
"analogIn": {
"override": false,
"file": "",
"loop": false
},
"digitalIO": {
"override": false,
"file": "",
"loop": false
}
}
}
}
Should I use this as the settings file for Pyo projects? Or should I set the block size in the file I posted in the OP? If so, which entry is it? -B?