# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.20.0)
set(mcuboot_CONFIG_SERIAL n)
set(mcuboot_CONFIG_UART_CONSOLE n)
set(mcuboot_CONFIG_USE_SEGGER_RTT y)
set(mcuboot_CONFIG_RTT_CONSOLE y)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(hello_world)

target_sources(app PRIVATE 
src/main.c
src/pwm_hal.c
)
