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: common/gpio.c
- Revision:
- 127:ce7cebc0511f
- Parent:
- 113:65a335a675de
- Child:
- 160:6870f452afa4
diff -r 549ba18ddd81 -r ce7cebc0511f common/gpio.c --- a/common/gpio.c Wed Mar 19 16:00:09 2014 +0000 +++ b/common/gpio.c Wed Mar 19 17:15:21 2014 +0000 @@ -17,9 +17,9 @@ static inline void _gpio_init_in(gpio_t* gpio, PinName pin, PinMode mode) { - gpio_init(gpio, pin); + gpio_init(gpio, pin); + gpio_dir(gpio, PIN_INPUT); gpio_mode(gpio, mode); - gpio_dir(gpio, PIN_INPUT); } static inline void _gpio_init_out(gpio_t* gpio, PinName pin, PinMode mode, int value)