mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Thu Jul 06 15:42:05 2017 +0100
Revision:
168:9672193075cf
Parent:
167:e84263d55307
Child:
170:19eb464bc2be
This updates the lib to the mbed lib v 146

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AnnaBridge 167:e84263d55307 1 /* mbed Microcontroller Library
AnnaBridge 167:e84263d55307 2 * Copyright (c) 2006-2017 ARM Limited
AnnaBridge 167:e84263d55307 3 *
AnnaBridge 167:e84263d55307 4 * Licensed under the Apache License, Version 2.0 (the "License");
AnnaBridge 167:e84263d55307 5 * you may not use this file except in compliance with the License.
AnnaBridge 167:e84263d55307 6 * You may obtain a copy of the License at
AnnaBridge 167:e84263d55307 7 *
AnnaBridge 167:e84263d55307 8 * http://www.apache.org/licenses/LICENSE-2.0
AnnaBridge 167:e84263d55307 9 *
AnnaBridge 167:e84263d55307 10 * Unless required by applicable law or agreed to in writing, software
AnnaBridge 167:e84263d55307 11 * distributed under the License is distributed on an "AS IS" BASIS,
AnnaBridge 167:e84263d55307 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
AnnaBridge 167:e84263d55307 13 * See the License for the specific language governing permissions and
AnnaBridge 167:e84263d55307 14 * limitations under the License.
AnnaBridge 167:e84263d55307 15 */
AnnaBridge 167:e84263d55307 16
AnnaBridge 167:e84263d55307 17 #ifndef MBED_UARTSERIAL_H
AnnaBridge 167:e84263d55307 18 #define MBED_UARTSERIAL_H
AnnaBridge 167:e84263d55307 19
AnnaBridge 167:e84263d55307 20 #include "platform/platform.h"
AnnaBridge 167:e84263d55307 21
AnnaBridge 168:9672193075cf 22 #if (DEVICE_SERIAL && DEVICE_INTERRUPTIN) || defined(DOXYGEN_ONLY)
AnnaBridge 167:e84263d55307 23
AnnaBridge 167:e84263d55307 24 #include "FileHandle.h"
AnnaBridge 167:e84263d55307 25 #include "SerialBase.h"
AnnaBridge 167:e84263d55307 26 #include "InterruptIn.h"
AnnaBridge 167:e84263d55307 27 #include "PlatformMutex.h"
AnnaBridge 167:e84263d55307 28 #include "serial_api.h"
AnnaBridge 167:e84263d55307 29 #include "CircularBuffer.h"
AnnaBridge 168:9672193075cf 30 #include "platform/NonCopyable.h"
AnnaBridge 167:e84263d55307 31
AnnaBridge 167:e84263d55307 32 #ifndef MBED_CONF_DRIVERS_UART_SERIAL_RXBUF_SIZE
AnnaBridge 167:e84263d55307 33 #define MBED_CONF_DRIVERS_UART_SERIAL_RXBUF_SIZE 256
AnnaBridge 167:e84263d55307 34 #endif
AnnaBridge 167:e84263d55307 35
AnnaBridge 167:e84263d55307 36 #ifndef MBED_CONF_DRIVERS_UART_SERIAL_TXBUF_SIZE
AnnaBridge 167:e84263d55307 37 #define MBED_CONF_DRIVERS_UART_SERIAL_TXBUF_SIZE 256
AnnaBridge 167:e84263d55307 38 #endif
AnnaBridge 167:e84263d55307 39
AnnaBridge 167:e84263d55307 40 namespace mbed {
AnnaBridge 167:e84263d55307 41
AnnaBridge 168:9672193075cf 42 class UARTSerial : private SerialBase, public FileHandle, private NonCopyable<UARTSerial> {
AnnaBridge 167:e84263d55307 43
AnnaBridge 167:e84263d55307 44 public:
AnnaBridge 167:e84263d55307 45
AnnaBridge 167:e84263d55307 46 /** Create a UARTSerial port, connected to the specified transmit and receive pins, with a particular baud rate.
AnnaBridge 167:e84263d55307 47 * @param tx Transmit pin
AnnaBridge 167:e84263d55307 48 * @param rx Receive pin
AnnaBridge 167:e84263d55307 49 * @param baud The baud rate of the serial port (optional, defaults to MBED_CONF_PLATFORM_DEFAULT_SERIAL_BAUD_RATE)
AnnaBridge 167:e84263d55307 50 */
AnnaBridge 167:e84263d55307 51 UARTSerial(PinName tx, PinName rx, int baud = MBED_CONF_PLATFORM_DEFAULT_SERIAL_BAUD_RATE);
AnnaBridge 167:e84263d55307 52 virtual ~UARTSerial();
AnnaBridge 167:e84263d55307 53
AnnaBridge 167:e84263d55307 54 /** Equivalent to POSIX poll(). Derived from FileHandle.
AnnaBridge 167:e84263d55307 55 * Provides a mechanism to multiplex input/output over a set of file handles.
AnnaBridge 167:e84263d55307 56 */
AnnaBridge 167:e84263d55307 57 virtual short poll(short events) const;
AnnaBridge 167:e84263d55307 58
AnnaBridge 167:e84263d55307 59 /** Write the contents of a buffer to a file
AnnaBridge 167:e84263d55307 60 *
AnnaBridge 167:e84263d55307 61 * @param buffer The buffer to write from
AnnaBridge 168:9672193075cf 62 * @param length The number of bytes to write
AnnaBridge 167:e84263d55307 63 * @return The number of bytes written, negative error on failure
AnnaBridge 167:e84263d55307 64 */
AnnaBridge 167:e84263d55307 65 virtual ssize_t write(const void* buffer, size_t length);
AnnaBridge 167:e84263d55307 66
AnnaBridge 167:e84263d55307 67 /** Read the contents of a file into a buffer
AnnaBridge 167:e84263d55307 68 *
AnnaBridge 167:e84263d55307 69 * Follows POSIX semantics:
AnnaBridge 167:e84263d55307 70 *
AnnaBridge 167:e84263d55307 71 * * if no data is available, and non-blocking set return -EAGAIN
AnnaBridge 167:e84263d55307 72 * * if no data is available, and blocking set, wait until data is available
AnnaBridge 167:e84263d55307 73 * * If any data is available, call returns immediately
AnnaBridge 167:e84263d55307 74 *
AnnaBridge 167:e84263d55307 75 * @param buffer The buffer to read in to
AnnaBridge 168:9672193075cf 76 * @param length The number of bytes to read
AnnaBridge 167:e84263d55307 77 * @return The number of bytes read, 0 at end of file, negative error on failure
AnnaBridge 167:e84263d55307 78 */
AnnaBridge 167:e84263d55307 79 virtual ssize_t read(void* buffer, size_t length);
AnnaBridge 167:e84263d55307 80
AnnaBridge 167:e84263d55307 81 /** Close a file
AnnaBridge 167:e84263d55307 82 *
AnnaBridge 167:e84263d55307 83 * @return 0 on success, negative error code on failure
AnnaBridge 167:e84263d55307 84 */
AnnaBridge 167:e84263d55307 85 virtual int close();
AnnaBridge 167:e84263d55307 86
AnnaBridge 167:e84263d55307 87 /** Check if the file in an interactive terminal device
AnnaBridge 167:e84263d55307 88 *
AnnaBridge 167:e84263d55307 89 * @return True if the file is a terminal
AnnaBridge 167:e84263d55307 90 * @return False if the file is not a terminal
AnnaBridge 167:e84263d55307 91 * @return Negative error code on failure
AnnaBridge 167:e84263d55307 92 */
AnnaBridge 167:e84263d55307 93 virtual int isatty();
AnnaBridge 167:e84263d55307 94
AnnaBridge 167:e84263d55307 95 /** Move the file position to a given offset from from a given location
AnnaBridge 167:e84263d55307 96 *
AnnaBridge 167:e84263d55307 97 * Not valid for a device type FileHandle like UARTSerial.
AnnaBridge 167:e84263d55307 98 * In case of UARTSerial, returns ESPIPE
AnnaBridge 167:e84263d55307 99 *
AnnaBridge 167:e84263d55307 100 * @param offset The offset from whence to move to
AnnaBridge 167:e84263d55307 101 * @param whence The start of where to seek
AnnaBridge 167:e84263d55307 102 * SEEK_SET to start from beginning of file,
AnnaBridge 167:e84263d55307 103 * SEEK_CUR to start from current position in file,
AnnaBridge 167:e84263d55307 104 * SEEK_END to start from end of file
AnnaBridge 167:e84263d55307 105 * @return The new offset of the file, negative error code on failure
AnnaBridge 167:e84263d55307 106 */
AnnaBridge 167:e84263d55307 107 virtual off_t seek(off_t offset, int whence);
AnnaBridge 167:e84263d55307 108
AnnaBridge 167:e84263d55307 109 /** Flush any buffers associated with the file
AnnaBridge 167:e84263d55307 110 *
AnnaBridge 167:e84263d55307 111 * @return 0 on success, negative error code on failure
AnnaBridge 167:e84263d55307 112 */
AnnaBridge 167:e84263d55307 113 virtual int sync();
AnnaBridge 167:e84263d55307 114
AnnaBridge 167:e84263d55307 115 /** Set blocking or non-blocking mode
AnnaBridge 167:e84263d55307 116 * The default is blocking.
AnnaBridge 167:e84263d55307 117 *
AnnaBridge 167:e84263d55307 118 * @param blocking true for blocking mode, false for non-blocking mode.
AnnaBridge 167:e84263d55307 119 */
AnnaBridge 167:e84263d55307 120 virtual int set_blocking(bool blocking)
AnnaBridge 167:e84263d55307 121 {
AnnaBridge 167:e84263d55307 122 _blocking = blocking;
AnnaBridge 167:e84263d55307 123 return 0;
AnnaBridge 167:e84263d55307 124 }
AnnaBridge 167:e84263d55307 125
AnnaBridge 167:e84263d55307 126 /** Register a callback on state change of the file.
AnnaBridge 167:e84263d55307 127 *
AnnaBridge 167:e84263d55307 128 * The specified callback will be called on state changes such as when
AnnaBridge 167:e84263d55307 129 * the file can be written to or read from.
AnnaBridge 167:e84263d55307 130 *
AnnaBridge 167:e84263d55307 131 * The callback may be called in an interrupt context and should not
AnnaBridge 167:e84263d55307 132 * perform expensive operations.
AnnaBridge 167:e84263d55307 133 *
AnnaBridge 167:e84263d55307 134 * Note! This is not intended as an attach-like asynchronous api, but rather
AnnaBridge 167:e84263d55307 135 * as a building block for constructing such functionality.
AnnaBridge 167:e84263d55307 136 *
AnnaBridge 167:e84263d55307 137 * The exact timing of when the registered function
AnnaBridge 167:e84263d55307 138 * is called is not guaranteed and susceptible to change. It should be used
AnnaBridge 167:e84263d55307 139 * as a cue to make read/write/poll calls to find the current state.
AnnaBridge 167:e84263d55307 140 *
AnnaBridge 167:e84263d55307 141 * @param func Function to call on state change
AnnaBridge 167:e84263d55307 142 */
AnnaBridge 167:e84263d55307 143 virtual void sigio(Callback<void()> func);
AnnaBridge 167:e84263d55307 144
AnnaBridge 167:e84263d55307 145 /** Setup interrupt handler for DCD line
AnnaBridge 167:e84263d55307 146 *
AnnaBridge 167:e84263d55307 147 * If DCD line is connected, an IRQ handler will be setup.
AnnaBridge 167:e84263d55307 148 * Does nothing if DCD is NC, i.e., not connected.
AnnaBridge 167:e84263d55307 149 *
AnnaBridge 167:e84263d55307 150 * @param dcd_pin Pin-name for DCD
AnnaBridge 167:e84263d55307 151 * @param active_high a boolean set to true if DCD polarity is active low
AnnaBridge 167:e84263d55307 152 */
AnnaBridge 167:e84263d55307 153 void set_data_carrier_detect(PinName dcd_pin, bool active_high = false);
AnnaBridge 167:e84263d55307 154
AnnaBridge 167:e84263d55307 155 private:
AnnaBridge 167:e84263d55307 156
AnnaBridge 168:9672193075cf 157 /** SerialBase lock override */
AnnaBridge 168:9672193075cf 158 virtual void lock(void);
AnnaBridge 168:9672193075cf 159
AnnaBridge 168:9672193075cf 160 /** SerialBase unlock override */
AnnaBridge 168:9672193075cf 161 virtual void unlock(void);
AnnaBridge 168:9672193075cf 162
AnnaBridge 168:9672193075cf 163 /** Acquire mutex */
AnnaBridge 168:9672193075cf 164 virtual void api_lock(void);
AnnaBridge 168:9672193075cf 165
AnnaBridge 168:9672193075cf 166 /** Release mutex */
AnnaBridge 168:9672193075cf 167 virtual void api_unlock(void);
AnnaBridge 168:9672193075cf 168
AnnaBridge 167:e84263d55307 169 /** Software serial buffers
AnnaBridge 167:e84263d55307 170 * By default buffer size is 256 for TX and 256 for RX. Configurable through mbed_app.json
AnnaBridge 167:e84263d55307 171 */
AnnaBridge 167:e84263d55307 172 CircularBuffer<char, MBED_CONF_DRIVERS_UART_SERIAL_RXBUF_SIZE> _rxbuf;
AnnaBridge 167:e84263d55307 173 CircularBuffer<char, MBED_CONF_DRIVERS_UART_SERIAL_TXBUF_SIZE> _txbuf;
AnnaBridge 167:e84263d55307 174
AnnaBridge 167:e84263d55307 175 PlatformMutex _mutex;
AnnaBridge 167:e84263d55307 176
AnnaBridge 167:e84263d55307 177 Callback<void()> _sigio_cb;
AnnaBridge 167:e84263d55307 178
AnnaBridge 167:e84263d55307 179 bool _blocking;
AnnaBridge 167:e84263d55307 180 bool _tx_irq_enabled;
AnnaBridge 167:e84263d55307 181 InterruptIn *_dcd_irq;
AnnaBridge 167:e84263d55307 182
AnnaBridge 167:e84263d55307 183 /** Device Hanged up
AnnaBridge 167:e84263d55307 184 * Determines if the device hanged up on us.
AnnaBridge 167:e84263d55307 185 *
AnnaBridge 167:e84263d55307 186 * @return True, if hanged up
AnnaBridge 167:e84263d55307 187 */
AnnaBridge 167:e84263d55307 188 bool hup() const;
AnnaBridge 167:e84263d55307 189
AnnaBridge 167:e84263d55307 190 /** ISRs for serial
AnnaBridge 167:e84263d55307 191 * Routines to handle interrupts on serial pins.
AnnaBridge 167:e84263d55307 192 * Copies data into Circular Buffer.
AnnaBridge 167:e84263d55307 193 * Reports the state change to File handle.
AnnaBridge 167:e84263d55307 194 */
AnnaBridge 167:e84263d55307 195 void tx_irq(void);
AnnaBridge 167:e84263d55307 196 void rx_irq(void);
AnnaBridge 167:e84263d55307 197
AnnaBridge 167:e84263d55307 198 void wake(void);
AnnaBridge 167:e84263d55307 199
AnnaBridge 167:e84263d55307 200 void dcd_irq(void);
AnnaBridge 168:9672193075cf 201
AnnaBridge 167:e84263d55307 202 };
AnnaBridge 167:e84263d55307 203 } //namespace mbed
AnnaBridge 167:e84263d55307 204
AnnaBridge 168:9672193075cf 205 #endif //(DEVICE_SERIAL && DEVICE_INTERRUPTIN) || defined(DOXYGEN_ONLY)
AnnaBridge 167:e84263d55307 206 #endif //MBED_UARTSERIAL_H