Initial commit for blinky

This commit is contained in:
2026-04-03 14:25:55 +08:00
commit 9f7a6a5b6c
8 changed files with 203 additions and 0 deletions

7
CMakeLists.txt Normal file
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)