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 9:663789d7729f 15 */
emilmont 9:663789d7729f 16 #ifndef MBED_PORTINOUT_H
emilmont 9:663789d7729f 17 #define MBED_PORTINOUT_H
emilmont 9:663789d7729f 18
emilmont 9:663789d7729f 19 #include "platform.h"
emilmont 9:663789d7729f 20
emilmont 9:663789d7729f 21 #if DEVICE_PORTINOUT
emilmont 9:663789d7729f 22
emilmont 9:663789d7729f 23 #include "port_api.h"
emilmont 9:663789d7729f 24
emilmont 9:663789d7729f 25 namespace mbed {
emilmont 9:663789d7729f 26
emilmont 9:663789d7729f 27 /** A multiple pin digital in/out used to set/read multiple bi-directional pins
emilmont 9:663789d7729f 28 */
emilmont 9:663789d7729f 29 class PortInOut {
emilmont 9:663789d7729f 30 public:
emilmont 9:663789d7729f 31
emilmont 9:663789d7729f 32 /** Create an PortInOut, connected to the specified port
emilmont 9:663789d7729f 33 *
emilmont 9:663789d7729f 34 * @param port Port to connect to (Port0-Port5)
emilmont 9:663789d7729f 35 * @param mask A bitmask to identify which bits in the port should be included (0 - ignore)
emilmont 9:663789d7729f 36 */
emilmont 9:663789d7729f 37 PortInOut(PortName port, int mask = 0xFFFFFFFF) {
emilmont 9:663789d7729f 38 port_init(&_port, port, mask, PIN_INPUT);
emilmont 9:663789d7729f 39 }
emilmont 9:663789d7729f 40
emilmont 9:663789d7729f 41 /** Write the value to the output port
emilmont 9:663789d7729f 42 *
emilmont 9:663789d7729f 43 * @param value An integer specifying a bit to write for every corresponding port pin
emilmont 9:663789d7729f 44 */
emilmont 9:663789d7729f 45 void write(int value) {
emilmont 9:663789d7729f 46 port_write(&_port, value);
emilmont 9:663789d7729f 47 }
emilmont 9:663789d7729f 48
emilmont 9:663789d7729f 49 /** Read the value currently output on the port
emilmont 9:663789d7729f 50 *
emilmont 9:663789d7729f 51 * @returns
emilmont 9:663789d7729f 52 * An integer with each bit corresponding to associated port pin setting
emilmont 9:663789d7729f 53 */
emilmont 9:663789d7729f 54 int read() {
emilmont 9:663789d7729f 55 return port_read(&_port);
emilmont 9:663789d7729f 56 }
emilmont 9:663789d7729f 57
emilmont 9:663789d7729f 58 /** Set as an output
emilmont 9:663789d7729f 59 */
emilmont 9:663789d7729f 60 void output() {
emilmont 9:663789d7729f 61 port_dir(&_port, PIN_OUTPUT);
emilmont 9:663789d7729f 62 }
emilmont 9:663789d7729f 63
emilmont 9:663789d7729f 64 /** Set as an input
emilmont 9:663789d7729f 65 */
emilmont 9:663789d7729f 66 void input() {
emilmont 9:663789d7729f 67 port_dir(&_port, PIN_INPUT);
emilmont 9:663789d7729f 68 }
emilmont 9:663789d7729f 69
emilmont 9:663789d7729f 70 /** Set the input pin mode
emilmont 9:663789d7729f 71 *
emilmont 9:663789d7729f 72 * @param mode PullUp, PullDown, PullNone, OpenDrain
emilmont 9:663789d7729f 73 */
emilmont 9:663789d7729f 74 void mode(PinMode mode) {
emilmont 9:663789d7729f 75 port_mode(&_port, mode);
emilmont 9:663789d7729f 76 }
emilmont 9:663789d7729f 77
emilmont 9:663789d7729f 78 /** A shorthand for write()
emilmont 9:663789d7729f 79 */
emilmont 9:663789d7729f 80 PortInOut& operator= (int value) {
emilmont 9:663789d7729f 81 write(value);
emilmont 9:663789d7729f 82 return *this;
emilmont 9:663789d7729f 83 }
emilmont 9:663789d7729f 84
emilmont 9:663789d7729f 85 PortInOut& operator= (PortInOut& rhs) {
emilmont 9:663789d7729f 86 write(rhs.read());
emilmont 9:663789d7729f 87 return *this;
emilmont 9:663789d7729f 88 }
emilmont 9:663789d7729f 89
emilmont 9:663789d7729f 90 /** A shorthand for read()
emilmont 9:663789d7729f 91 */
emilmont 9:663789d7729f 92 operator int() {
emilmont 9:663789d7729f 93 return read();
emilmont 9:663789d7729f 94 }
emilmont 9:663789d7729f 95
emilmont 9:663789d7729f 96 private:
emilmont 9:663789d7729f 97 port_t _port;
emilmont 9:663789d7729f 98 };
emilmont 9:663789d7729f 99
emilmont 9:663789d7729f 100 } // namespace mbed
emilmont 9:663789d7729f 101
emilmont 9:663789d7729f 102 #endif
emilmont 9:663789d7729f 103
emilmont 9:663789d7729f 104 #endif