bootloader somehow working

Signed-off-by: Eduard Iten <eduard@iten.pro>
This commit is contained in:
2025-07-11 15:10:10 +02:00
parent c3c23efc95
commit 0227e54198
22 changed files with 204 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include <zephyr/kernel.h>
#include <zephyr/logging/log.h>
#include <app_version.h>
LOG_MODULE_REGISTER(bl_test_app, LOG_LEVEL_INF);
int main(void)
{
LOG_INF("Hello World from bl_test! This is version %s", APP_VERSION_EXTENDED_STRING);
return 0;
}