d8f955e375
Adds driver for pwm on xmc4xxx using Capture Compare Unit 8 (CCU8) module. There are two CCU8 nodes with each one having four slices. Each slice has two output channels. Unlike CCU4, this module can generate complementary high-side/low-side signals for each output channel. A variable dead time can be added during the off to on transitions to make sure that the high-side/low-side signals are not on at the same time. Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
10 lines
240 B
Plaintext
10 lines
240 B
Plaintext
# Copyright (c) 2023 SLB
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config PWM_XMC4XXX_CCU8
|
|
bool "Infineon XMC4XXX CCU4 driver"
|
|
default y
|
|
depends on DT_HAS_INFINEON_XMC4XXX_CCU8_PWM_ENABLED
|
|
help
|
|
Enables Infineon XMC4XXX CCU8 PWM driver.
|