Commit 1578a991 authored by Gaël PORTAY's avatar Gaël PORTAY Committed by Maureen Helm
Browse files

samples: blinky_pwm: fix missing project renaming



The commit bfb10406 has renamed the
sample blink_led to blinky_pwm, however, the project still have the
former name: blink_led.

This renames the project to its new name: blinky_pwm.

Signed-off-by: default avatarGaël PORTAY <gael.portay@gmail.com>
parent ec8a689f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,6 +2,6 @@

cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(blink_led)
project(blinky_pwm)

target_sources(app PRIVATE src/main.c)