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 /** \addtogroup platform */
thedo 167:1657b442184c 2 /** @{*/
thedo 167:1657b442184c 3 /* mbed Microcontroller Library
thedo 167:1657b442184c 4 * Copyright (c) 2006-2013 ARM Limited
thedo 167:1657b442184c 5 *
thedo 167:1657b442184c 6 * Licensed under the Apache License, Version 2.0 (the "License");
thedo 167:1657b442184c 7 * you may not use this file except in compliance with the License.
thedo 167:1657b442184c 8 * You may obtain a copy of the License at
thedo 167:1657b442184c 9 *
thedo 167:1657b442184c 10 * http://www.apache.org/licenses/LICENSE-2.0
thedo 167:1657b442184c 11 *
thedo 167:1657b442184c 12 * Unless required by applicable law or agreed to in writing, software
thedo 167:1657b442184c 13 * distributed under the License is distributed on an "AS IS" BASIS,
thedo 167:1657b442184c 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
thedo 167:1657b442184c 15 * See the License for the specific language governing permissions and
thedo 167:1657b442184c 16 * limitations under the License.
thedo 167:1657b442184c 17 */
thedo 167:1657b442184c 18 #ifndef MBED_PREPROCESSOR_H
thedo 167:1657b442184c 19 #define MBED_PREPROCESSOR_H
thedo 167:1657b442184c 20
thedo 167:1657b442184c 21
thedo 167:1657b442184c 22 /** MBED_CONCAT
thedo 167:1657b442184c 23 * Concatenate tokens together
thedo 167:1657b442184c 24 *
thedo 167:1657b442184c 25 * @note
thedo 167:1657b442184c 26 * Expands tokens before concatenation
thedo 167:1657b442184c 27 *
thedo 167:1657b442184c 28 * @code
thedo 167:1657b442184c 29 * // Creates a unique label based on the line number
thedo 167:1657b442184c 30 * int MBED_CONCAT(UNIQUE_LABEL_, __LINE__) = 1;
thedo 167:1657b442184c 31 * @endcode
thedo 167:1657b442184c 32 */
thedo 167:1657b442184c 33 #define MBED_CONCAT(a, b) MBED_CONCAT_(a, b)
thedo 167:1657b442184c 34 #define MBED_CONCAT_(a, b) a##b
thedo 167:1657b442184c 35
thedo 167:1657b442184c 36 /** MBED_STRINGIFY
thedo 167:1657b442184c 37 * Converts tokens into strings
thedo 167:1657b442184c 38 *
thedo 167:1657b442184c 39 * @note
thedo 167:1657b442184c 40 * Expands tokens before stringification
thedo 167:1657b442184c 41 *
thedo 167:1657b442184c 42 * @code
thedo 167:1657b442184c 43 * // Creates a string based on the parameters
thedo 167:1657b442184c 44 * const char *c = MBED_STRINGIFY(This is a ridiculous way to create a string)
thedo 167:1657b442184c 45 * @endcode
thedo 167:1657b442184c 46 */
thedo 167:1657b442184c 47 #define MBED_STRINGIFY(a) MBED_STRINGIFY_(a)
thedo 167:1657b442184c 48 #define MBED_STRINGIFY_(a) #a
thedo 167:1657b442184c 49
thedo 167:1657b442184c 50
thedo 167:1657b442184c 51 #endif
thedo 167:1657b442184c 52
thedo 167:1657b442184c 53 /** @}*/
thedo 167:1657b442184c 54