ncs 3.1.1
trying to use VSCode to compile the LE audio project for an audio DK to run as a broadcast source with USB audio in and I'm possibly having a build configuration issue?
I'm trying to just use one audio DK as a broadcast source, and get a phone (pixel 8) to point some LE audio earbuds (galaxy buds 2 pro) to the broadcast source and stream audio played by an app on my computer to the USB audio device that the audio DK provides the computer..
looking at the setyup instructions I made CONFIG_TRANSPORT_BIS=y in the prj.conf file and I have setup the build configuration to use the files relevant to the basic build target (audio dk) and the debug version...
Everything SEEMS to work ok, that is the computer finds the USB audio device that the audio DK should be showing, and I can point audio at it. My phone finds the audio stream and will happily point the galaxy buds at the stream, and confirm they are hooked in, and will even show me when the stream pauses/starts on the button push on the audio DK. All LEDS on the audio DK are as expected. BUT there's no audio in the earbuds. just silence when streaming the broadcast
I am getting this in terms of build problems... on one hand prj.conf (in project root I believe?) is giving me two issues with variables. one is to do with the atrribute tx count which from what i understand would be nothing to do with the actual streaming audio transport - then I'm also getting complaints this same named file in sysbuild\ipc_radio as not being used?? and I have another issue with what looks like a related attribute tx count variable in kconfig.gatt in the bluetooth stack code... plus some stuff related to debug logging.
[{
"resource": "/c:/ncs/v3.1.1/nrf/applications/nrf5340_audio/prj.conf",
"owner": "kconfig",
"severity": 4,
"message": "CONFIG_BT_SECURITY_ERR_TO_STR was assigned the value y, but got the value n. Missing dependencies:\n(BT_SMP && BT_CONN && BT_HCI_HOST && BT_RPC_STACK) || (BT_SMP && BT_CONN && BT_HCI_HOST && BT_HCI && BT)",
"startLineNumber": 33,
"startColumn": 1,
"endLineNumber": 33,
"endColumn": 30,
"origin": "extHost1"
},{
"resource": "/c:/ncs/v3.1.1/nrf/applications/nrf5340_audio/prj.conf",
"owner": "kconfig",
"severity": 4,
"message": "CONFIG_BT_ATT_TX_COUNT couldn't be set. Missing dependencies:\n(BT_CONN && BT_HCI_HOST && BT_RPC_STACK) || (BT_CONN && BT_HCI_HOST && BT_HCI && BT)",
"startLineNumber": 79,
"startColumn": 1,
"endLineNumber": 79,
"endColumn": 23,
"origin": "extHost1"
},{
"resource": "/c:/ncs/v3.1.1/zephyr/CMakeLists.txt",
"owner": "nrf-connect",
"severity": 4,
"message": "__ASSERT() statements are globally ENABLED",
"source": "cmake",
"startLineNumber": 2232,
"startColumn": 1,
"endLineNumber": 2232,
"endColumn": 2147483647
},{
"resource": "/c:/ncs/v3.1.1/zephyr/subsys/bluetooth/host/Kconfig",
"owner": "nrf-connect",
"severity": 4,
"message": "BT_SECURITY_ERR_TO_STR (defined at C:/ncs/v3.1.1/zephyr/subsys/bluetooth/host/Kconfig:418,",
"source": "kconfig",
"startLineNumber": 418,
"startColumn": 1,
"endLineNumber": 418,
"endColumn": 2147483647
},{
"resource": "/c:/ncs/v3.1.1/zephyr/subsys/bluetooth/host/Kconfig.gatt",
"owner": "nrf-connect",
"severity": 4,
"message": "BT_ATT_TX_COUNT (defined at C:/ncs/v3.1.1/zephyr/subsys/bluetooth/host\\Kconfig.gatt:16,",
"source": "kconfig",
"startLineNumber": 16,
"startColumn": 1,
"endLineNumber": 16,
"endColumn": 2147483647
},{
"resource": "/c:/ncs/v3.1.1/nrf/applications/nrf5340_audio/sysbuild/ipc_radio/prj.conf",
"owner": "Kconfig no context",
"severity": 2,
"message": "The active build context 'build/nrf5340_audio' does not use this file.",
"startLineNumber": 1,
"startColumn": 1,
"endLineNumber": 1,
"endColumn": 1,
"origin": "extHost1"
}]First up I guess - are these warnings even normal and expected for this project in this configuration or am I configuring the build wrong? (should I even be using VScode for this audio dk project??)
Secondly I'm aware I'm trying to do something where the audio DK is just a tiny (but important) piece of a system with multiple computing devices running all sorts of code.... but I'm kind of stuck as to how to approach getting baseline behavior tested here as the whole thing is just weird out of the box.
I guess I could modify the project to take analogue audio in and ruin a TRS cable form my laptop's headphone connector to the audio DK? that would chop out one source of issues (and add another)
I do actually have three audio DKs I can use (which worked a while ago with a much more primitive example project that only worked via command line and might not have even been in a full SDK release... when I set them up as a 1 transmitter and 2 receiver setup that just linked together to work)
so I guess i could build a broadcast receiver to test myy tramnsmitter with - but from what i can tell that project has an auto join feature if I make a receiver and a transmitter with two audio DKs... so it's not really a test for my use case I'm trying to make work.