Skip to content
Snippets Groups Projects
Commit 7c74b7da authored by Glenn Ruben Bakke's avatar Glenn Ruben Bakke Committed by Damien George
Browse files

nrf/drivers/softpwm: Rename init function to softpwm_init0.

parent d76982e3
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ static const pwm_events OFF_EVENTS = {
#define active_events MP_STATE_PORT(pwm_active_events)
#define pending_events MP_STATE_PORT(pwm_pending_events)
void softpwm_init(void) {
void softpwm_init0(void) {
active_events = &OFF_EVENTS;
pending_events = NULL;
}
......
#ifndef __MICROPY_INCLUDED_LIB_PWM_H__
#define __MICROPY_INCLUDED_LIB_PWM_H__
void softpwm_init(void);
void softpwm_init0(void);
void pwm_start(void);
void pwm_stop(void);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment