ad555d08d8
sample firmware for Twinkie V2 that toggles the LED based on charging status. Signed-off-by: Jason Yuan <jasonyuan@google.com>
10 lines
235 B
CMake
10 lines
235 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(google_twinkie_v2)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|