Please use mbed-src instead of this library.mbed-src supports GR-PEACH rev.C. mbed-srcライブラリをご利用ください。mbed-srcはGR-PEACH rev.Cに対応しています。

Fork of mbed-src_GR-PEACH_rev_c by GR-PEACH_producer_meeting

Committer:
RyoheiHagimoto
Date:
Mon Apr 06 12:35:13 2015 +0000
Revision:
491:affe2fb21f3a
Parent:
212:34d62c0b2af6
The time-out of I2C is changed to 10ms from 1s.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 13:0645d8841f51 1 /* mbed Microcontroller Library
bogdanm 13:0645d8841f51 2 * Copyright (c) 2006-2013 ARM Limited
bogdanm 13:0645d8841f51 3 *
bogdanm 13:0645d8841f51 4 * Licensed under the Apache License, Version 2.0 (the "License");
bogdanm 13:0645d8841f51 5 * you may not use this file except in compliance with the License.
bogdanm 13:0645d8841f51 6 * You may obtain a copy of the License at
bogdanm 13:0645d8841f51 7 *
bogdanm 13:0645d8841f51 8 * http://www.apache.org/licenses/LICENSE-2.0
bogdanm 13:0645d8841f51 9 *
bogdanm 13:0645d8841f51 10 * Unless required by applicable law or agreed to in writing, software
bogdanm 13:0645d8841f51 11 * distributed under the License is distributed on an "AS IS" BASIS,
bogdanm 13:0645d8841f51 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
bogdanm 13:0645d8841f51 13 * See the License for the specific language governing permissions and
bogdanm 13:0645d8841f51 14 * limitations under the License.
bogdanm 13:0645d8841f51 15 */
bogdanm 13:0645d8841f51 16 #ifndef MBED_SERIAL_H
bogdanm 13:0645d8841f51 17 #define MBED_SERIAL_H
bogdanm 13:0645d8841f51 18
bogdanm 13:0645d8841f51 19 #include "platform.h"
bogdanm 13:0645d8841f51 20
bogdanm 13:0645d8841f51 21 #if DEVICE_SERIAL
bogdanm 13:0645d8841f51 22
bogdanm 13:0645d8841f51 23 #include "Stream.h"
mbed_official 36:ab3ee77451e7 24 #include "SerialBase.h"
bogdanm 13:0645d8841f51 25 #include "serial_api.h"
bogdanm 13:0645d8841f51 26
bogdanm 13:0645d8841f51 27 namespace mbed {
bogdanm 13:0645d8841f51 28
bogdanm 13:0645d8841f51 29 /** A serial port (UART) for communication with other serial devices
bogdanm 13:0645d8841f51 30 *
bogdanm 13:0645d8841f51 31 * Can be used for Full Duplex communication, or Simplex by specifying
bogdanm 13:0645d8841f51 32 * one pin as NC (Not Connected)
bogdanm 13:0645d8841f51 33 *
bogdanm 13:0645d8841f51 34 * Example:
bogdanm 13:0645d8841f51 35 * @code
bogdanm 13:0645d8841f51 36 * // Print "Hello World" to the PC
bogdanm 13:0645d8841f51 37 *
bogdanm 13:0645d8841f51 38 * #include "mbed.h"
bogdanm 13:0645d8841f51 39 *
bogdanm 13:0645d8841f51 40 * Serial pc(USBTX, USBRX);
bogdanm 13:0645d8841f51 41 *
bogdanm 13:0645d8841f51 42 * int main() {
bogdanm 13:0645d8841f51 43 * pc.printf("Hello World\n");
bogdanm 13:0645d8841f51 44 * }
bogdanm 13:0645d8841f51 45 * @endcode
bogdanm 13:0645d8841f51 46 */
mbed_official 36:ab3ee77451e7 47 class Serial : public SerialBase, public Stream {
bogdanm 13:0645d8841f51 48
bogdanm 13:0645d8841f51 49 public:
bogdanm 13:0645d8841f51 50 /** Create a Serial port, connected to the specified transmit and receive pins
bogdanm 13:0645d8841f51 51 *
bogdanm 13:0645d8841f51 52 * @param tx Transmit pin
bogdanm 13:0645d8841f51 53 * @param rx Receive pin
bogdanm 13:0645d8841f51 54 *
bogdanm 13:0645d8841f51 55 * @note
bogdanm 13:0645d8841f51 56 * Either tx or rx may be specified as NC if unused
bogdanm 13:0645d8841f51 57 */
bogdanm 13:0645d8841f51 58 Serial(PinName tx, PinName rx, const char *name=NULL);
bogdanm 13:0645d8841f51 59
bogdanm 13:0645d8841f51 60 protected:
bogdanm 13:0645d8841f51 61 virtual int _getc();
mbed_official 212:34d62c0b2af6 62 virtual int _putc(int c);
bogdanm 13:0645d8841f51 63 };
bogdanm 13:0645d8841f51 64
bogdanm 13:0645d8841f51 65 } // namespace mbed
bogdanm 13:0645d8841f51 66
bogdanm 13:0645d8841f51 67 #endif
bogdanm 13:0645d8841f51 68
bogdanm 13:0645d8841f51 69 #endif