GM6000 Digital Heater Controller Branch: main
SDX-1330
Pwm.h
Go to the documentation of this file.
1#ifndef Driver_DIO_Pwm_h_
2#define Driver_DIO_Pwm_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_map.h"
16#include "colony_config.h"
17
18/// Defer the definition of the PWM configuration to the application's 'platform'
19#define DriverDioPwmConfig_T DriverDioPwmConfig_T_MAP
20
21/// Value for Maximum Duty/100% cycle
22#ifndef OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE
23#define OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE 0xFFFF
24#endif
25
26///
27namespace Driver {
28///
29namespace DIO {
30
31/** This class defines a generic interface for controlling a simple PWM
32 output signal.
33 */
34class Pwm
35{
36public:
37 /** Constructor Note: the 'pinConfig' struct MUST stay in scope as long
38 as the driver is in scope.
39 */
41
42public:
43 /** Starts the driver. For 'initialLogicalDutyCycle', a value of 0 is
44 0% duty cycle. A value of OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE
45 is 100% duty cycle.
46
47 Returns false if an error was encountered
48 */
49 bool start( size_t initialLogicalDutyCycle );
50
51 /** Stops the driver, places the output into a 'safe' state. The safe state
52 is defined by the platform
53 */
54 void stop();
55
56public:
57 /** Sets/updates the duty cycle. A value of 0 is 0% duty cycle. A
58 value of OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE is 100% duty cycle
59 */
60 void setDutyCycle( size_t logicalDutyCycle );
61
62
63protected:
64 /// PWM info
66
67 /// Started flag
69};
70
71} // End namespace(s)
72}
73
74/*--------------------------------------------------------------------------*/
75#endif // end header latch
#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
namespace