Private
Public Access
2
0

pwm: removed unused code and optimized flow for subplatform support

Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Mihai Tudor Panu
2016-03-15 16:34:29 -07:00
committed by Brendan Le Foll
parent 9a5abb7d56
commit 0e5dadeb8c
3 changed files with 32 additions and 19 deletions

View File

@@ -189,16 +189,18 @@ mraa_result_t mraa_pwm_config_percent(mraa_pwm_context dev, int period, float du
/**
* Get the maximum pwm period in us
*
* @param dev The pwm context to use
* @return max pwm in us
*/
int mraa_pwm_get_max_period();
int mraa_pwm_get_max_period(mraa_pwm_context dev);
/**
* Get the minimum pwm period in us
*
* @param dev The pwm context to use
* @return min pwm in us
*/
int mraa_pwm_get_min_period();
int mraa_pwm_get_min_period(mraa_pwm_context dev);
#ifdef __cplusplus
}

View File

@@ -176,10 +176,7 @@ class Pwm
Result
enable(bool enable)
{
if (enable)
return (Result) mraa_pwm_enable(m_pwm, 1);
else
return (Result) mraa_pwm_enable(m_pwm, 0);
return (Result) mraa_pwm_enable(m_pwm, enable);
}
/**
* Set the period and duty of a PWM object.
@@ -213,7 +210,7 @@ class Pwm
int
max_period()
{
return mraa_pwm_get_max_period();
return mraa_pwm_get_max_period(m_pwm);
}
/**
* Get the minimum pwm period in us
@@ -223,7 +220,7 @@ class Pwm
int
min_period()
{
return mraa_pwm_get_min_period();
return mraa_pwm_get_min_period(m_pwm);
}
private: