Zwischenstand

This commit is contained in:
2026-05-11 11:49:20 +02:00
parent 5d20d2820a
commit 35639a2615
12 changed files with 101 additions and 13 deletions

View File

@@ -5,7 +5,7 @@
#include "fs_mgmt.h"
#include "buzz_proto.h"
#include "fw_mgmt.h"
#include "audio.h"
// #include "audio.h"
LOG_MODULE_REGISTER(main);
@@ -44,6 +44,7 @@ void ble_rx_cb(const uint8_t *data, uint16_t len)
buzz_proto_buf_free(&buf); /* Speicher bei Fehler sofort wieder freigeben */
}
}
#endif
int main(void)
@@ -55,13 +56,19 @@ int main(void)
LOG_ERR("Failed to initialize BLE management: %d", rc);
return rc;
}
LOG_WRN("After BLE init");
#else
LOG_WRN("BLE not enabled");
#endif
LOG_INF("Init complete.");
LOG_WRN("Main park loop active");
k_sleep(K_MSEC(500));
LOG_INF("Playing test audio files...");
audio_queue_play("/lfs/sys/update", false);
audio_queue_play("/lfs/sys/confirm", false);
k_sleep(K_FOREVER);
// k_sleep(K_MSEC(500));
// LOG_INF("Playing test audio files...");
// audio_queue_play("/lfs/sys/update", false);
// audio_queue_play("/lfs/sys/confirm", false);
for (;;) {
int32_t rem_ms = k_sleep(K_FOREVER);
LOG_WRN("main woke unexpectedly (remaining=%d ms)", rem_ms);
}
}