Skip to content

Commit 521bf87

Browse files
author
Sven Hädrich
committed
Fixup
1 parent b1bc8f5 commit 521bf87

File tree

6 files changed

+30
-0
lines changed

6 files changed

+30
-0
lines changed

drivers/dali/Kconfig

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# DALI configuration options
2+
3+
# Copyright (c) 2025 by Sven Hädrich <[email protected]>
4+
# SPDX-License-Identifier: Apache-1.0
5+
16
config DALI
27
bool "Digital Addressable Lighting Interface (DALI) drivers"
38
default y

drivers/dali/Kconfig.pwm

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# PWM DALI configuration options
2+
3+
# Copyright (c) 2025 by Sven Hädrich <[email protected]>
4+
# SPDX-License-Identifier: Apache-1.0
5+
16
config DALI_PWM
27
bool "Generic PWM DALI driver"
38
default y

drivers/dali/dali_pwm.c

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2025 by Sven Hädrich <[email protected]>
3+
* SPDX-License-Identifier: Apache-1.0
4+
*/
5+
16
#define DT_DRV_COMPAT zephyr_dali_pwm
27

38
#include <dali.h>

drivers/dali/include/dali.h

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2025 by Sven Hädrich <[email protected]>
3+
* SPDX-License-Identifier: Apache-1.0
4+
*/
5+
16
#ifndef DRIVERS_DALI_INCLUDE_DALI_H_
27
#define DRIVERS_DALI_INCLUDE_DALI_H_
38

drivers/dali/include/dali_std.h

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2025 by Sven Hädrich <[email protected]>
3+
* SPDX-License-Identifier: Apache-1.0
4+
*/
5+
16
#ifndef DRIVERS_DALI_INCLUDE_DALI_STD_H_
27
#define DRIVERS_DALI_INCLUDE_DALI_STD_H_
38

samples/drivers/dali/src/main.c

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2025 by Sven Hädrich <[email protected]>
3+
* SPDX-License-Identifier: Apache-1.0
4+
*/
5+
16
#include <stdio.h>
27

38
#include <zephyr/kernel.h>

0 commit comments

Comments
 (0)