]> git.donarmstrong.com Git - qmk_firmware.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_NXP/TARGET_LPC11UXX/gpio_api.c
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[qmk_firmware.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_NXP / TARGET_LPC11UXX / gpio_api.c
1 /* mbed Microcontroller Library
2  * Copyright (c) 2006-2013 ARM Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include "mbed_assert.h"
17 #include "gpio_api.h"
18 #include "pinmap.h"
19
20 uint32_t gpio_set(PinName pin) {
21     MBED_ASSERT(pin != (PinName)NC);
22     int f = ((pin == P0_0)  ||
23              (pin == P0_10) ||
24              (pin == P0_11) ||
25              (pin == P0_12) ||
26              (pin == P0_13) ||
27              (pin == P0_14) ||
28              (pin == P0_15)) ? (1) : (0);
29     
30     pin_function(pin, f);
31     
32     return (1 << ((int)pin & 0x1F));
33 }
34
35 void gpio_init(gpio_t *obj, PinName pin) {
36     obj->pin = pin;
37     if (pin == (PinName)NC)
38         return;
39
40     obj->mask = gpio_set(pin);
41     
42     unsigned int port = (unsigned int)pin >> PORT_SHIFT;
43     
44     obj->reg_set = &LPC_GPIO->SET[port];
45     obj->reg_clr = &LPC_GPIO->CLR[port];
46     obj->reg_in  = &LPC_GPIO->PIN[port];
47     obj->reg_dir = &LPC_GPIO->DIR[port];
48 }
49
50 void gpio_mode(gpio_t *obj, PinMode mode) {
51     pin_mode(obj->pin, mode);
52 }
53
54 void gpio_dir(gpio_t *obj, PinDirection direction) {
55     MBED_ASSERT(obj->pin != (PinName)NC);
56     switch (direction) {
57         case PIN_INPUT :
58             *obj->reg_dir &= ~obj->mask;
59             break;
60         case PIN_OUTPUT:
61             *obj->reg_dir |=  obj->mask;
62             break;
63     }
64 }