![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class defines a generic interface for controlling a simple PWM output signal. More...
This class defines a generic interface for controlling a simple PWM output signal.
#include <Pwm.h>
Public Member Functions | |
Pwm (DriverDioPwmConfig_T pinConfig) | |
Constructor Note: the 'pinConfig' struct MUST stay in scope as long as the driver is in scope. | |
bool | start (size_t initialLogicalDutyCycle) |
Starts the driver. | |
void | stop () |
Stops the driver, places the output into a 'safe' state. | |
void | setDutyCycle (size_t logicalDutyCycle) |
Sets/updates the duty cycle. | |
Protected Attributes | |
DriverDioPwmConfig_T | m_pwm |
PWM info. | |
bool | m_started |
Started flag. | |
Driver::DIO::Pwm::Pwm | ( | DriverDioPwmConfig_T | pinConfig | ) |
Constructor Note: the 'pinConfig' struct MUST stay in scope as long as the driver is in scope.
void Driver::DIO::Pwm::setDutyCycle | ( | size_t | logicalDutyCycle | ) |
Sets/updates the duty cycle.
A value of 0 is 0% duty cycle. A value of OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE is 100% duty cycle
bool Driver::DIO::Pwm::start | ( | size_t | initialLogicalDutyCycle | ) |
Starts the driver.
For 'initialLogicalDutyCycle', a value of 0 is 0% duty cycle. A value of OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE is 100% duty cycle.
Returns false if an error was encountered
void Driver::DIO::Pwm::stop | ( | ) |
Stops the driver, places the output into a 'safe' state.
The safe state is defined by the platform
|
protected |
PWM info.
|
protected |
Started flag.