mbed libraries for KL25Z

Dependents:   FRDM_RGBLED

Committer:
emilmont
Date:
Mon Feb 18 09:41:56 2013 +0000
Revision:
9:663789d7729f
Parent:
8:c14af7958ef5
Update mbed-KL25Z to latest build

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 9:663789d7729f 1 /* mbed Microcontroller Library
emilmont 9:663789d7729f 2 * Copyright (c) 2006-2013 ARM Limited
emilmont 9:663789d7729f 3 *
emilmont 9:663789d7729f 4 * Licensed under the Apache License, Version 2.0 (the "License");
emilmont 9:663789d7729f 5 * you may not use this file except in compliance with the License.
emilmont 9:663789d7729f 6 * You may obtain a copy of the License at
emilmont 9:663789d7729f 7 *
emilmont 9:663789d7729f 8 * http://www.apache.org/licenses/LICENSE-2.0
emilmont 9:663789d7729f 9 *
emilmont 9:663789d7729f 10 * Unless required by applicable law or agreed to in writing, software
emilmont 9:663789d7729f 11 * distributed under the License is distributed on an "AS IS" BASIS,
emilmont 9:663789d7729f 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
emilmont 9:663789d7729f 13 * See the License for the specific language governing permissions and
emilmont 9:663789d7729f 14 * limitations under the License.
emilmont 7:73c5efe92a6c 15 */
emilmont 7:73c5efe92a6c 16 #ifndef MBED_PORTMAP_H
emilmont 7:73c5efe92a6c 17 #define MBED_PORTMAP_H
emilmont 7:73c5efe92a6c 18
emilmont 7:73c5efe92a6c 19 #include "device.h"
emilmont 7:73c5efe92a6c 20
emilmont 7:73c5efe92a6c 21 #if DEVICE_PORTIN || DEVICE_PORTOUT
emilmont 7:73c5efe92a6c 22
emilmont 7:73c5efe92a6c 23 #ifdef __cplusplus
emilmont 7:73c5efe92a6c 24 extern "C" {
emilmont 7:73c5efe92a6c 25 #endif
emilmont 7:73c5efe92a6c 26
emilmont 9:663789d7729f 27 typedef struct port_s port_t;
emilmont 7:73c5efe92a6c 28
emilmont 7:73c5efe92a6c 29 PinName port_pin(PortName port, int pin_n);
emilmont 7:73c5efe92a6c 30
emilmont 9:663789d7729f 31 void port_init (port_t *obj, PortName port, int mask, PinDirection dir);
emilmont 9:663789d7729f 32 void port_mode (port_t *obj, PinMode mode);
emilmont 9:663789d7729f 33 void port_dir (port_t *obj, PinDirection dir);
emilmont 9:663789d7729f 34 void port_write(port_t *obj, int value);
emilmont 9:663789d7729f 35 int port_read (port_t *obj);
emilmont 7:73c5efe92a6c 36
emilmont 7:73c5efe92a6c 37 #ifdef __cplusplus
emilmont 7:73c5efe92a6c 38 }
emilmont 7:73c5efe92a6c 39 #endif
emilmont 7:73c5efe92a6c 40 #endif
emilmont 7:73c5efe92a6c 41
emilmont 7:73c5efe92a6c 42 #endif