1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

lpc2387: pwm_init: return actual frequency

This commit is contained in:
Joakim Gebart 2015-05-16 10:06:30 +02:00
parent 92a743560d
commit 8619bdec63

View File

@ -82,7 +82,7 @@ int pwm_init(pwm_t dev, pwm_mode_t mode, unsigned int frequency, unsigned int re
#endif
}
return 0;
return frequency;
}
int pwm_set(pwm_t dev, int channel, unsigned int value)