Skip to content

Commit f6cb248

Browse files
committed
applications: nrf5340_audio: SC test
- OCT-3301 - Testing SonarCloud. DNM Signed-off-by: Kristoffer Rist Skøien <kristoffer.skoien@nordicsemi.no>
1 parent a9aa3d5 commit f6cb248

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

applications/nrf5340_audio/src/audio/le_audio_rx.c

+7
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,13 @@ static void audio_datapath_thread(void *dummy1, void *dummy2, void *dummy3)
142142
struct ble_iso_data *iso_received = NULL;
143143
size_t iso_received_size;
144144

145+
volatile uint8_t array[2];
146+
for (int i = 0; i < 4; i++) {
147+
array[i] = 4;
148+
}
149+
150+
LOG_WRN("test %d %d", array[0], array[1]);
151+
145152
while (1) {
146153
ret = data_fifo_pointer_last_filled_get(&ble_fifo_rx, (void *)&iso_received,
147154
&iso_received_size, K_FOREVER);

0 commit comments

Comments
 (0)