From e0fac858858322612dc375affda954f98d5fe768 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Wed, 12 Jun 2024 10:18:04 +0200 Subject: [PATCH] Fix build Error: 'section attribute cannot be specified for local variables' --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index e0a8f6e..3fb250d 100644 --- a/src/main.c +++ b/src/main.c @@ -385,7 +385,7 @@ uint8_t hci_cmd_iso_timesync_cb(struct net_buf *buf) int main(void) { /* incoming events and data from the controller */ - K_FIFO_DEFINE(rx_queue); + static K_FIFO_DEFINE(rx_queue); int err; LOG_DBG("Start");