Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-src by
Diff: targets/hal/TARGET_Maxim/TARGET_MAX32610/pwmout_api.c
- Revision:
- 599:efb83a170500
- Parent:
- 507:d4fc7603a669
- Child:
- 603:3c75ef011213
diff -r 2d5fc5624619 -r efb83a170500 targets/hal/TARGET_Maxim/TARGET_MAX32610/pwmout_api.c --- a/targets/hal/TARGET_Maxim/TARGET_MAX32610/pwmout_api.c Wed Jul 29 09:45:09 2015 +0100 +++ b/targets/hal/TARGET_Maxim/TARGET_MAX32610/pwmout_api.c Fri Jul 31 14:00:09 2015 +0100 @@ -77,9 +77,9 @@ } // If all instances are in use, overwrite the last - pwm = PinMap_PWM[++i]; + pwm = PinMap_PWM[i++]; if(pwm.pin != pin) { - pwm = PinMap_PWM[--i]; + pwm = PinMap_PWM[(i-1)]; i = -1; break; }