Defines the configuration fields for a Dc2Dc class.
More...
#include <dc2dc.hpp>
|
| Dc2DcConfig () |
| Constructor. More...
|
|
| Dc2DcConfig (uint pwmPin, uint adcChannel, float divider=1.0f, uint32_t pwmFreq=Pwm::kPwmDefaultFreq, float adcVref=Adc::kAdcDefaultVRef, float pwmMinDuty=kPwmMinDutyCycleDefault, float pwmMaxDuty=kPwmMaxDutyCycleDefault, float pwmSlowStepDuty=kPwmSlowStepDutyCycleDefault, float pwmFastStepDuty=kPwmFastStepDutyCycleDefault, float pwmToleranceToFast=kPwmToleranceToFastDefault, float vTolerance=kDc2DcVoutToleranceDefault) |
| Constructor. More...
|
|
Dc2DcConfig & | operator= (const Dc2DcConfig &src) |
| Assign Operator. More...
|
|
Defines the configuration fields for a Dc2Dc class.
◆ Dc2DcConfig() [1/2]
Constructor.
Assumes defaults for all fields.
◆ Dc2DcConfig() [2/2]
Dc2DcConfig |
( |
uint |
pwmPin, |
|
|
uint |
adcChannel, |
|
|
float |
divider = 1.0f , |
|
|
uint32_t |
pwmFreq = Pwm::kPwmDefaultFreq , |
|
|
float |
adcVref = Adc::kAdcDefaultVRef , |
|
|
float |
pwmMinDuty = kPwmMinDutyCycleDefault , |
|
|
float |
pwmMaxDuty = kPwmMaxDutyCycleDefault , |
|
|
float |
pwmSlowStepDuty = kPwmSlowStepDutyCycleDefault , |
|
|
float |
pwmFastStepDuty = kPwmFastStepDutyCycleDefault , |
|
|
float |
pwmToleranceToFast = kPwmToleranceToFastDefault , |
|
|
float |
vTolerance = kDc2DcVoutToleranceDefault |
|
) |
| |
|
explicit |
Constructor.
- Parameters
-
pwmPin | Pin number of the PWM. |
adcChannel | Number of the ADC channel (0 to 3). |
divider | Feedback divider in output of DC2DC converter. |
pwmFreq | Frequency of the PWM, in Hertz. |
adcVref | Reference voltage of the ADC, in Volts. |
pwmMinDuty | Minimal duty cycle value for the PWM, in %. |
pwmMaxDuty | Maximum duty cycle value for the PWM, in %. |
pwmSlowStepDuty | Step of slow increment/decrement for the PWM duty cycle. |
pwmFastStepDuty | Step of fast increment/decrement for the PWM duty cycle. |
pwmToleranceToFast | Tolerance between actual and target voltages to consider them far. |
vTolerance | Tolerance voltage for DC2DC output. |
◆ operator=()
Assign Operator.
- Parameters
-
- Returns
- Reference for this.
◆ operator==
Equality Operator.
- Parameters
-
a | One object. |
b | Another object. |
- Returns
- True if the objects contain equal values, false otherwise.
◆ operator!=
Unequality Operator.
- Parameters
-
a | One object. |
b | Another object. |
- Returns
- True if the objects contain different values, false otherwise.
◆ pwmPin
Pin number of the PWM.
Default: 0xFF (not assigned).
◆ pwmFreq
◆ adcVref
◆ adcChannel
Number of the ADC channel (0 to 3).
Default: 0xFF (not assigned).
◆ divider
Feedback divider in output of DC2DC converter.
Typical formula: Divider = (R1 + R2) / R2.
Default: 1.0.
◆ pwmMinDuty
Minimal duty cycle value for the PWM, in %.
Default: kPwmMinDutyCycleDefault.
◆ pwmMaxDuty
Maximum duty cycle value for the PWM, in %.
Default: kPwmMaxDutyCycleDefault.
◆ pwmSlowStepDuty
Step of slow increment/decrement for the PWM duty cycle.
Used when actual voltage is near to the target voltage.
Default: kPwmSlowStepDutyCycleDefault.
◆ pwmFastStepDuty
Step of fast increment/decrement for the PWM duty cycle.
Used when actual voltage is far to the target voltage.
Default: kPwmFastStepDutyCycleDefault.
◆ pwmToleranceToFast
Tolerance between actual and target voltages to consider them far.
Used formula: distance = |actual - targetV * (1.0 +- vTolerance) * (1.0 +- pwmToleranceToFast)|
Default: kPwmToleranceToFastDefault.
◆ vTolerance
Tolerance voltage for DC2DC output.
The output voltage will vary within tolerance limits.
Default: kDc2DcVoutToleranceDefault.
◆ kPwmMinDutyCycleDefault
constexpr float kPwmMinDutyCycleDefault = 0.0f |
|
staticconstexpr |
Default value for minimal duty cycle value for the PWM, in %.
◆ kPwmMaxDutyCycleDefault
constexpr float kPwmMaxDutyCycleDefault = 95.0f |
|
staticconstexpr |
Default value for maximum duty cycle value for the PWM, in %.
◆ kPwmSlowStepDutyCycleDefault
constexpr float kPwmSlowStepDutyCycleDefault = 0.1f |
|
staticconstexpr |
Default value for step of slow increment/decrement for the PWM duty cycle.
◆ kPwmFastStepDutyCycleDefault
constexpr float kPwmFastStepDutyCycleDefault = 1.0f |
|
staticconstexpr |
Default value for step of fast increment/decrement for the PWM duty cycle.
◆ kPwmToleranceToFastDefault
constexpr float kPwmToleranceToFastDefault = 0.1f |
|
staticconstexpr |
Default value for Tolerance between actual and target voltages to consider them far.
◆ kDc2DcVoutToleranceDefault
constexpr float kDc2DcVoutToleranceDefault = 0.05f |
|
staticconstexpr |
Default value for tolerance voltage for DC2DC output.
The documentation for this struct was generated from the following files: