Add hello_world Zephyr application for stm32g431_core

This commit is contained in:
2025-07-03 09:15:11 +02:00
parent c3df6565b7
commit 38fd3a6aac
4 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include <zephyr/kernel.h>
#include <zephyr/sys/printk.h>
int main(void)
{
printk("Hello World! %s\n", CONFIG_BOARD);
return 0;
}