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:
gdisirio 2011-10-06 17:37:17 +00:00
parent d7146dbcf5
commit c57f4cbc41
2 changed files with 0 additions and 17 deletions

View File

@ -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.
*

View File

@ -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);