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_NXP/TARGET_LPC11UXX/gpio_api.c
- Revision:
- 113:65a335a675de
- Parent:
- 13:0645d8841f51
- Child:
- 207:05668db47a72
--- a/targets/hal/TARGET_NXP/TARGET_LPC11UXX/gpio_api.c Fri Mar 07 16:00:07 2014 +0000 +++ b/targets/hal/TARGET_NXP/TARGET_LPC11UXX/gpio_api.c Mon Mar 10 11:30:07 2014 +0000 @@ -27,7 +27,7 @@ return (1 << ((int)pin & 0x1F)); } -void gpio_init(gpio_t *obj, PinName pin, PinDirection direction) { +void gpio_init(gpio_t *obj, PinName pin) { if(pin == NC) return; obj->pin = pin; @@ -39,12 +39,6 @@ obj->reg_clr = &LPC_GPIO->CLR[port]; obj->reg_in = &LPC_GPIO->PIN[port]; obj->reg_dir = &LPC_GPIO->DIR[port]; - - gpio_dir(obj, direction); - switch (direction) { - case PIN_OUTPUT: pin_mode(pin, PullNone); break; - case PIN_INPUT : pin_mode(pin, PullDown); break; - } } void gpio_mode(gpio_t *obj, PinMode mode) {