Removed obsolete function leftover in the PWM low level driver template. It just affected documentation.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.2.x@3427 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
d7146dbcf5
commit
c57f4cbc41
|
@ -92,22 +92,6 @@ void pwm_lld_stop(PWMDriver *pwmp) {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Determines whatever the PWM channel is already enabled.
|
||||
*
|
||||
* @param[in] pwmp pointer to the @p PWMDriver object
|
||||
* @param[in] channel PWM channel identifier
|
||||
* @return The PWM channel status.
|
||||
* @retval FALSE the channel is not enabled.
|
||||
* @retval TRUE the channel is enabled.
|
||||
*
|
||||
* @notapi
|
||||
*/
|
||||
bool_t pwm_lld_is_enabled(PWMDriver *pwmp, pwmchannel_t channel) {
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Enables a PWM channel.
|
||||
*
|
||||
|
|
|
@ -202,7 +202,6 @@ extern "C" {
|
|||
void pwm_lld_init(void);
|
||||
void pwm_lld_start(PWMDriver *pwmp);
|
||||
void pwm_lld_stop(PWMDriver *pwmp);
|
||||
bool_t pwm_lld_is_enabled(PWMDriver *pwmp, pwmchannel_t channel);
|
||||
void pwm_lld_enable_channel(PWMDriver *pwmp,
|
||||
pwmchannel_t channel,
|
||||
pwmcnt_t width);
|
||||
|
|
Loading…
Reference in New Issue