27 lines
400 B
Plaintext
27 lines
400 B
Plaintext
/*
|
|
* Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <dt-bindings/pwm/pwm.h>
|
|
|
|
/ {
|
|
aliases {
|
|
pwm-0 = &ledc0;
|
|
pwm-led0 = &pwm_led_blue;
|
|
};
|
|
|
|
pwmleds {
|
|
compatible = "pwm-leds";
|
|
pwm_led_blue: pwm_led_gpio0_2 {
|
|
label = "PWM LED0";
|
|
pwms = <&ledc0 2 1000 PWM_POLARITY_NORMAL>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&ledc0 {
|
|
status = "okay";
|
|
};
|