nrf5/hal: Exposing two new PWM hal functions start() and stop().

This commit is contained in:
Glenn Ruben Bakke 2016-12-31 17:06:07 +01:00
parent c5d77f0e7e
commit 5e322ea078
1 changed files with 4 additions and 0 deletions

View File

@ -90,4 +90,8 @@ void hal_pwm_period_set(NRF_PWM_Type * p_instance, uint16_t period);
void hal_pwm_duty_set(NRF_PWM_Type * p_instance, uint8_t duty);
void hal_pwm_start(NRF_PWM_Type * p_instance);
void hal_pwm_stop(NRF_PWM_Type * p_instance);
#endif // HAL_PWM_H__