samples: blinky_pwm: fix missing project renaming

The commit bfb1040612 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: Gaël PORTAY <gael.portay@gmail.com>
This commit is contained in:
Gaël PORTAY 2022-10-14 17:50:29 +02:00 committed by Maureen Helm
commit 1578a991bd

View file

@ -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)