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_BUSIN_H
H_Tsunemoto 0:871ab6846b18 17 #define MBED_BUSIN_H
H_Tsunemoto 0:871ab6846b18 18
H_Tsunemoto 0:871ab6846b18 19 #include "platform.h"
H_Tsunemoto 0:871ab6846b18 20 #include "DigitalIn.h"
H_Tsunemoto 0:871ab6846b18 21
H_Tsunemoto 0:871ab6846b18 22 namespace mbed {
H_Tsunemoto 0:871ab6846b18 23
H_Tsunemoto 0:871ab6846b18 24 /** A digital input bus, used for reading the state of a collection of pins
H_Tsunemoto 0:871ab6846b18 25 */
H_Tsunemoto 0:871ab6846b18 26 class BusIn {
H_Tsunemoto 0:871ab6846b18 27
H_Tsunemoto 0:871ab6846b18 28 public:
H_Tsunemoto 0:871ab6846b18 29 /* Group: Configuration Methods */
H_Tsunemoto 0:871ab6846b18 30
H_Tsunemoto 0:871ab6846b18 31 /** Create an BusIn, connected to the specified pins
H_Tsunemoto 0:871ab6846b18 32 *
H_Tsunemoto 0:871ab6846b18 33 * @param <n> DigitalIn pin to connect to bus bit <n> (p5-p30, NC)
H_Tsunemoto 0:871ab6846b18 34 *
H_Tsunemoto 0:871ab6846b18 35 * @note
H_Tsunemoto 0:871ab6846b18 36 * It is only required to specify as many pin variables as is required
H_Tsunemoto 0:871ab6846b18 37 * for the bus; the rest will default to NC (not connected)
H_Tsunemoto 0:871ab6846b18 38 */
H_Tsunemoto 0:871ab6846b18 39 BusIn(PinName p0, PinName p1 = NC, PinName p2 = NC, PinName p3 = NC,
H_Tsunemoto 0:871ab6846b18 40 PinName p4 = NC, PinName p5 = NC, PinName p6 = NC, PinName p7 = NC,
H_Tsunemoto 0:871ab6846b18 41 PinName p8 = NC, PinName p9 = NC, PinName p10 = NC, PinName p11 = NC,
H_Tsunemoto 0:871ab6846b18 42 PinName p12 = NC, PinName p13 = NC, PinName p14 = NC, PinName p15 = NC);
H_Tsunemoto 0:871ab6846b18 43
H_Tsunemoto 0:871ab6846b18 44 BusIn(PinName pins[16]);
H_Tsunemoto 0:871ab6846b18 45
H_Tsunemoto 0:871ab6846b18 46 virtual ~BusIn();
H_Tsunemoto 0:871ab6846b18 47
H_Tsunemoto 0:871ab6846b18 48 /** Read the value of the input bus
H_Tsunemoto 0:871ab6846b18 49 *
H_Tsunemoto 0:871ab6846b18 50 * @returns
H_Tsunemoto 0:871ab6846b18 51 * An integer with each bit corresponding to the value read from the associated DigitalIn pin
H_Tsunemoto 0:871ab6846b18 52 */
H_Tsunemoto 0:871ab6846b18 53 int read();
H_Tsunemoto 0:871ab6846b18 54
H_Tsunemoto 0:871ab6846b18 55 /** Set the input pin mode
H_Tsunemoto 0:871ab6846b18 56 *
H_Tsunemoto 0:871ab6846b18 57 * @param mode PullUp, PullDown, PullNone
H_Tsunemoto 0:871ab6846b18 58 */
H_Tsunemoto 0:871ab6846b18 59 void mode(PinMode pull);
H_Tsunemoto 0:871ab6846b18 60
H_Tsunemoto 0:871ab6846b18 61 #ifdef MBED_OPERATORS
H_Tsunemoto 0:871ab6846b18 62 /** A shorthand for read()
H_Tsunemoto 0:871ab6846b18 63 */
H_Tsunemoto 0:871ab6846b18 64 operator int();
H_Tsunemoto 0:871ab6846b18 65 #endif
H_Tsunemoto 0:871ab6846b18 66
H_Tsunemoto 0:871ab6846b18 67 protected:
H_Tsunemoto 0:871ab6846b18 68 DigitalIn* _pin[16];
H_Tsunemoto 0:871ab6846b18 69
H_Tsunemoto 0:871ab6846b18 70 /* disallow copy constructor and assignment operators */
H_Tsunemoto 0:871ab6846b18 71 private:
H_Tsunemoto 0:871ab6846b18 72 BusIn(const BusIn&);
H_Tsunemoto 0:871ab6846b18 73 BusIn & operator = (const BusIn&);
H_Tsunemoto 0:871ab6846b18 74 };
H_Tsunemoto 0:871ab6846b18 75
H_Tsunemoto 0:871ab6846b18 76 } // namespace mbed
H_Tsunemoto 0:871ab6846b18 77
H_Tsunemoto 0:871ab6846b18 78 #endif