nrf5/hal: Exposing two new PWM hal functions start() and stop().
This commit is contained in:
parent
c5d77f0e7e
commit
5e322ea078
|
@ -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_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__
|
#endif // HAL_PWM_H__
|
||||||
|
|
Loading…
Reference in New Issue