This commit is contained in:
2026-02-26 11:53:52 +01:00
parent 402781f49c
commit d48bc33530
7 changed files with 128 additions and 281 deletions

View File

@@ -4,6 +4,7 @@
#include <zephyr/drivers/hwinfo.h>
#include <zephyr/init.h>
#include <zephyr/sys/printk.h>
#include <zephyr/logging/log_ctrl.h>
#include <app_version.h>
#include <version.h>
#include <ncs_version.h>
@@ -71,4 +72,11 @@ int main(void)
LOG_ERR("I/O initialization failed: %d", rc);
return rc;
}
LOG_INF("All subsystems initialized. Starting application threads.");
audio_system_ready();
audio_play("/lfs/sys/404");
while (1) {
k_sleep(K_FOREVER);
}
}