LPC11U35 ADC Tick & USBSerial

Dependencies:   mbed

Dependents:   SmallDoseMeter_SingleCH_AE_lpc11u35_V1_00

Committer:
H_Tsunemoto
Date:
Mon Feb 19 09:09:52 2018 +0000
Revision:
1:b1a3be5f48ab
Parent:
0:871ab6846b18
test

Who changed what in which revision?

UserRevisionLine numberNew contents of line
H_Tsunemoto 0:871ab6846b18 1 /* mbed Microcontroller Library
H_Tsunemoto 0:871ab6846b18 2 * Copyright (c) 2006-2013 ARM Limited
H_Tsunemoto 0:871ab6846b18 3 *
H_Tsunemoto 0:871ab6846b18 4 * Licensed under the Apache License, Version 2.0 (the "License");
H_Tsunemoto 0:871ab6846b18 5 * you may not use this file except in compliance with the License.
H_Tsunemoto 0:871ab6846b18 6 * You may obtain a copy of the License at
H_Tsunemoto 0:871ab6846b18 7 *
H_Tsunemoto 0:871ab6846b18 8 * http://www.apache.org/licenses/LICENSE-2.0
H_Tsunemoto 0:871ab6846b18 9 *
H_Tsunemoto 0:871ab6846b18 10 * Unless required by applicable law or agreed to in writing, software
H_Tsunemoto 0:871ab6846b18 11 * distributed under the License is distributed on an "AS IS" BASIS,
H_Tsunemoto 0:871ab6846b18 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
H_Tsunemoto 0:871ab6846b18 13 * See the License for the specific language governing permissions and
H_Tsunemoto 0:871ab6846b18 14 * limitations under the License.
H_Tsunemoto 0:871ab6846b18 15 */
H_Tsunemoto 0:871ab6846b18 16 #ifndef MBED_BUSINOUT_H
H_Tsunemoto 0:871ab6846b18 17 #define MBED_BUSINOUT_H
H_Tsunemoto 0:871ab6846b18 18
H_Tsunemoto 0:871ab6846b18 19 #include "DigitalInOut.h"
H_Tsunemoto 0:871ab6846b18 20
H_Tsunemoto 0:871ab6846b18 21 namespace mbed {
H_Tsunemoto 0:871ab6846b18 22
H_Tsunemoto 0:871ab6846b18 23 /** A digital input output bus, used for setting the state of a collection of pins
H_Tsunemoto 0:871ab6846b18 24 */
H_Tsunemoto 0:871ab6846b18 25 class BusInOut {
H_Tsunemoto 0:871ab6846b18 26
H_Tsunemoto 0:871ab6846b18 27 public:
H_Tsunemoto 0:871ab6846b18 28
H_Tsunemoto 0:871ab6846b18 29 /** Create an BusInOut, connected to the specified pins
H_Tsunemoto 0:871ab6846b18 30 *
H_Tsunemoto 0:871ab6846b18 31 * @param p<n> DigitalInOut pin to connect to bus bit p<n> (p5-p30, NC)
H_Tsunemoto 0:871ab6846b18 32 *
H_Tsunemoto 0:871ab6846b18 33 * @note
H_Tsunemoto 0:871ab6846b18 34 * It is only required to specify as many pin variables as is required
H_Tsunemoto 0:871ab6846b18 35 * for the bus; the rest will default to NC (not connected)
H_Tsunemoto 0:871ab6846b18 36 */
H_Tsunemoto 0:871ab6846b18 37 BusInOut(PinName p0, PinName p1 = NC, PinName p2 = NC, PinName p3 = NC,
H_Tsunemoto 0:871ab6846b18 38 PinName p4 = NC, PinName p5 = NC, PinName p6 = NC, PinName p7 = NC,
H_Tsunemoto 0:871ab6846b18 39 PinName p8 = NC, PinName p9 = NC, PinName p10 = NC, PinName p11 = NC,
H_Tsunemoto 0:871ab6846b18 40 PinName p12 = NC, PinName p13 = NC, PinName p14 = NC, PinName p15 = NC);
H_Tsunemoto 0:871ab6846b18 41
H_Tsunemoto 0:871ab6846b18 42 BusInOut(PinName pins[16]);
H_Tsunemoto 0:871ab6846b18 43
H_Tsunemoto 0:871ab6846b18 44 virtual ~BusInOut();
H_Tsunemoto 0:871ab6846b18 45
H_Tsunemoto 0:871ab6846b18 46 /* Group: Access Methods */
H_Tsunemoto 0:871ab6846b18 47
H_Tsunemoto 0:871ab6846b18 48 /** Write the value to the output bus
H_Tsunemoto 0:871ab6846b18 49 *
H_Tsunemoto 0:871ab6846b18 50 * @param value An integer specifying a bit to write for every corresponding DigitalInOut pin
H_Tsunemoto 0:871ab6846b18 51 */
H_Tsunemoto 0:871ab6846b18 52 void write(int value);
H_Tsunemoto 0:871ab6846b18 53
H_Tsunemoto 0:871ab6846b18 54
H_Tsunemoto 0:871ab6846b18 55 /** Read the value currently output on the bus
H_Tsunemoto 0:871ab6846b18 56 *
H_Tsunemoto 0:871ab6846b18 57 * @returns
H_Tsunemoto 0:871ab6846b18 58 * An integer with each bit corresponding to associated DigitalInOut pin setting
H_Tsunemoto 0:871ab6846b18 59 */
H_Tsunemoto 0:871ab6846b18 60 int read();
H_Tsunemoto 0:871ab6846b18 61
H_Tsunemoto 0:871ab6846b18 62 /** Set as an output
H_Tsunemoto 0:871ab6846b18 63 */
H_Tsunemoto 0:871ab6846b18 64 void output();
H_Tsunemoto 0:871ab6846b18 65
H_Tsunemoto 0:871ab6846b18 66 /** Set as an input
H_Tsunemoto 0:871ab6846b18 67 */
H_Tsunemoto 0:871ab6846b18 68 void input();
H_Tsunemoto 0:871ab6846b18 69
H_Tsunemoto 0:871ab6846b18 70 /** Set the input pin mode
H_Tsunemoto 0:871ab6846b18 71 *
H_Tsunemoto 0:871ab6846b18 72 * @param mode PullUp, PullDown, PullNone
H_Tsunemoto 0:871ab6846b18 73 */
H_Tsunemoto 0:871ab6846b18 74 void mode(PinMode pull);
H_Tsunemoto 0:871ab6846b18 75
H_Tsunemoto 0:871ab6846b18 76 #ifdef MBED_OPERATORS
H_Tsunemoto 0:871ab6846b18 77 /** A shorthand for write()
H_Tsunemoto 0:871ab6846b18 78 */
H_Tsunemoto 0:871ab6846b18 79 BusInOut& operator= (int v);
H_Tsunemoto 0:871ab6846b18 80 BusInOut& operator= (BusInOut& rhs);
H_Tsunemoto 0:871ab6846b18 81
H_Tsunemoto 0:871ab6846b18 82 /** A shorthand for read()
H_Tsunemoto 0:871ab6846b18 83 */
H_Tsunemoto 0:871ab6846b18 84 operator int();
H_Tsunemoto 0:871ab6846b18 85 #endif
H_Tsunemoto 0:871ab6846b18 86
H_Tsunemoto 0:871ab6846b18 87 protected:
H_Tsunemoto 0:871ab6846b18 88 DigitalInOut* _pin[16];
H_Tsunemoto 0:871ab6846b18 89
H_Tsunemoto 0:871ab6846b18 90 /* disallow copy constructor and assignment operators */
H_Tsunemoto 0:871ab6846b18 91 private:
H_Tsunemoto 0:871ab6846b18 92 BusInOut(const BusInOut&);
H_Tsunemoto 0:871ab6846b18 93 BusInOut & operator = (const BusInOut&);
H_Tsunemoto 0:871ab6846b18 94 };
H_Tsunemoto 0:871ab6846b18 95
H_Tsunemoto 0:871ab6846b18 96 } // namespace mbed
H_Tsunemoto 0:871ab6846b18 97
H_Tsunemoto 0:871ab6846b18 98 #endif