Initial commit for blinky

This commit is contained in:
jhChun
2026-04-09 17:11:41 +09:00
commit 750f2d139e
8 changed files with 203 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(blinky)
target_sources(app PRIVATE src/main.c)