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:
166:3a9487d57a5c
project opencv 3.1 on GR PEACH board, no use SD card.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thedo 166:3a9487d57a5c 1 /* mbed Microcontroller Library
thedo 166:3a9487d57a5c 2 * Copyright (c) 2006-2012 ARM Limited
thedo 166:3a9487d57a5c 3 *
thedo 166:3a9487d57a5c 4 * Permission is hereby granted, free of charge, to any person obtaining a copy
thedo 166:3a9487d57a5c 5 * of this software and associated documentation files (the "Software"), to deal
thedo 166:3a9487d57a5c 6 * in the Software without restriction, including without limitation the rights
thedo 166:3a9487d57a5c 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
thedo 166:3a9487d57a5c 8 * copies of the Software, and to permit persons to whom the Software is
thedo 166:3a9487d57a5c 9 * furnished to do so, subject to the following conditions:
thedo 166:3a9487d57a5c 10 *
thedo 166:3a9487d57a5c 11 * The above copyright notice and this permission notice shall be included in
thedo 166:3a9487d57a5c 12 * all copies or substantial portions of the Software.
thedo 166:3a9487d57a5c 13 *
thedo 166:3a9487d57a5c 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
thedo 166:3a9487d57a5c 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
thedo 166:3a9487d57a5c 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
thedo 166:3a9487d57a5c 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
thedo 166:3a9487d57a5c 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
thedo 166:3a9487d57a5c 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
thedo 166:3a9487d57a5c 20 * SOFTWARE.
thedo 166:3a9487d57a5c 21 */
thedo 166:3a9487d57a5c 22 #include "rtos/RtosTimer.h"
thedo 166:3a9487d57a5c 23
thedo 166:3a9487d57a5c 24 #include <string.h>
thedo 166:3a9487d57a5c 25
thedo 166:3a9487d57a5c 26 #include "mbed.h"
thedo 166:3a9487d57a5c 27 #include "cmsis_os.h"
thedo 166:3a9487d57a5c 28 #include "platform/mbed_error.h"
thedo 166:3a9487d57a5c 29
thedo 166:3a9487d57a5c 30 namespace rtos {
thedo 166:3a9487d57a5c 31
thedo 166:3a9487d57a5c 32 void RtosTimer::constructor(mbed::Callback<void()> func, os_timer_type type) {
thedo 166:3a9487d57a5c 33 #ifdef CMSIS_OS_RTX
thedo 166:3a9487d57a5c 34 _timer.ptimer = (void (*)(const void *))Callback<void()>::thunk;
thedo 166:3a9487d57a5c 35
thedo 166:3a9487d57a5c 36 memset(_timer_data, 0, sizeof(_timer_data));
thedo 166:3a9487d57a5c 37 _timer.timer = _timer_data;
thedo 166:3a9487d57a5c 38 #endif
thedo 166:3a9487d57a5c 39 _function = func;
thedo 166:3a9487d57a5c 40 _timer_id = osTimerCreate(&_timer, type, &_function);
thedo 166:3a9487d57a5c 41 }
thedo 166:3a9487d57a5c 42
thedo 166:3a9487d57a5c 43 osStatus RtosTimer::start(uint32_t millisec) {
thedo 166:3a9487d57a5c 44 return osTimerStart(_timer_id, millisec);
thedo 166:3a9487d57a5c 45 }
thedo 166:3a9487d57a5c 46
thedo 166:3a9487d57a5c 47 osStatus RtosTimer::stop(void) {
thedo 166:3a9487d57a5c 48 return osTimerStop(_timer_id);
thedo 166:3a9487d57a5c 49 }
thedo 166:3a9487d57a5c 50
thedo 166:3a9487d57a5c 51 RtosTimer::~RtosTimer() {
thedo 166:3a9487d57a5c 52 osTimerDelete(_timer_id);
thedo 166:3a9487d57a5c 53 }
thedo 166:3a9487d57a5c 54
thedo 166:3a9487d57a5c 55 }