1#ifndef Driver_DIO_Pwm_h_
2#define Driver_DIO_Pwm_h_
15#include "colony_map.h"
16#include "colony_config.h"
19#define DriverDioPwmConfig_T DriverDioPwmConfig_T_MAP
22#ifndef OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE
23#define OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE 0xFFFF
49 bool start(
size_t initialLogicalDutyCycle );
#define DriverDioPwmConfig_T
Defer the definition of the PWM configuration to the application's 'platform'.
Definition Pwm.h:19
This class defines a generic interface for controlling a simple PWM output signal.
Definition Pwm.h:35
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 setDutyCycle(size_t logicalDutyCycle)
Sets/updates the duty cycle.
void stop()
Stops the driver, places the output into a 'safe' state.
DriverDioPwmConfig_T m_pwm
PWM info.
Definition Pwm.h:65
bool m_started
Started flag.
Definition Pwm.h:68