Opencv 3.1 project on GR-PEACH board

Fork of gr-peach-opencv-project by the do

Committer:
thedo
Date:
Tue Jul 04 06:23:13 2017 +0000
Revision:
170:54ff26da7eb6
Parent:
167:1657b442184c
project opencv 3.1 on GR PEACH board, no use SD card.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thedo 167:1657b442184c 1 /* mbed Microcontroller Library
thedo 167:1657b442184c 2 * Copyright (c) 2006-2013 ARM Limited
thedo 167:1657b442184c 3 *
thedo 167:1657b442184c 4 * Licensed under the Apache License, Version 2.0 (the "License");
thedo 167:1657b442184c 5 * you may not use this file except in compliance with the License.
thedo 167:1657b442184c 6 * You may obtain a copy of the License at
thedo 167:1657b442184c 7 *
thedo 167:1657b442184c 8 * http://www.apache.org/licenses/LICENSE-2.0
thedo 167:1657b442184c 9 *
thedo 167:1657b442184c 10 * Unless required by applicable law or agreed to in writing, software
thedo 167:1657b442184c 11 * distributed under the License is distributed on an "AS IS" BASIS,
thedo 167:1657b442184c 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
thedo 167:1657b442184c 13 * See the License for the specific language governing permissions and
thedo 167:1657b442184c 14 * limitations under the License.
thedo 167:1657b442184c 15 */
thedo 167:1657b442184c 16 #include "drivers/Serial.h"
thedo 167:1657b442184c 17 #include "platform/mbed_wait_api.h"
thedo 167:1657b442184c 18
thedo 167:1657b442184c 19 #if DEVICE_SERIAL
thedo 167:1657b442184c 20
thedo 167:1657b442184c 21 namespace mbed {
thedo 167:1657b442184c 22
thedo 167:1657b442184c 23 Serial::Serial(PinName tx, PinName rx, const char *name, int baud) : SerialBase(tx, rx, baud), Stream(name) {
thedo 167:1657b442184c 24 }
thedo 167:1657b442184c 25
thedo 167:1657b442184c 26 Serial::Serial(PinName tx, PinName rx, int baud): SerialBase(tx, rx, baud), Stream(NULL) {
thedo 167:1657b442184c 27 }
thedo 167:1657b442184c 28
thedo 167:1657b442184c 29 int Serial::_getc() {
thedo 167:1657b442184c 30 // Mutex is already held
thedo 167:1657b442184c 31 return _base_getc();
thedo 167:1657b442184c 32 }
thedo 167:1657b442184c 33
thedo 167:1657b442184c 34 int Serial::_putc(int c) {
thedo 167:1657b442184c 35 // Mutex is already held
thedo 167:1657b442184c 36 return _base_putc(c);
thedo 167:1657b442184c 37 }
thedo 167:1657b442184c 38
thedo 167:1657b442184c 39 void Serial::lock() {
thedo 167:1657b442184c 40 _mutex.lock();
thedo 167:1657b442184c 41 }
thedo 167:1657b442184c 42
thedo 167:1657b442184c 43 void Serial::unlock() {
thedo 167:1657b442184c 44 _mutex.unlock();
thedo 167:1657b442184c 45 }
thedo 167:1657b442184c 46
thedo 167:1657b442184c 47 } // namespace mbed
thedo 167:1657b442184c 48
thedo 167:1657b442184c 49 #endif
thedo 167:1657b442184c 50