Renesas GR-PEACH OpenCV Development / gr-peach-opencv-project-sd-card_update

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

Committer:
thedo
Date:
Fri Jul 21 01:26:02 2017 +0000
Revision:
166:240bc5a0f42a
gr-peach-opencv-project-sd-card

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thedo 166:240bc5a0f42a 1 /******************************************************************************
thedo 166:240bc5a0f42a 2 * DISCLAIMER
thedo 166:240bc5a0f42a 3 * This software is supplied by Renesas Electronics Corporation and is only
thedo 166:240bc5a0f42a 4 * intended for use with Renesas products. No other uses are authorized. This
thedo 166:240bc5a0f42a 5 * software is owned by Renesas Electronics Corporation and is protected under
thedo 166:240bc5a0f42a 6 * all applicable laws, including copyright laws.
thedo 166:240bc5a0f42a 7 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
thedo 166:240bc5a0f42a 8 * THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
thedo 166:240bc5a0f42a 9 * LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
thedo 166:240bc5a0f42a 10 * AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
thedo 166:240bc5a0f42a 11 * TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
thedo 166:240bc5a0f42a 12 * ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
thedo 166:240bc5a0f42a 13 * FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
thedo 166:240bc5a0f42a 14 * ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
thedo 166:240bc5a0f42a 15 * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
thedo 166:240bc5a0f42a 16 * Renesas reserves the right, without notice, to make changes to this software
thedo 166:240bc5a0f42a 17 * and to discontinue the availability of this software. By using this software,
thedo 166:240bc5a0f42a 18 * you agree to the additional terms and conditions found by accessing the
thedo 166:240bc5a0f42a 19 * following link:
thedo 166:240bc5a0f42a 20 * http://www.renesas.com/disclaimer
thedo 166:240bc5a0f42a 21 *
thedo 166:240bc5a0f42a 22 * Copyright (C) 2014 Renesas Electronics Corporation. All rights reserved.
thedo 166:240bc5a0f42a 23 *******************************************************************************/
thedo 166:240bc5a0f42a 24 /*******************************************************************************
thedo 166:240bc5a0f42a 25 * File Name : ascii.h
thedo 166:240bc5a0f42a 26 * Device(s) : RZ/A1H (R7S721001)
thedo 166:240bc5a0f42a 27 * Tool-Chain : GNUARM-NONEv14.02-EABI
thedo 166:240bc5a0f42a 28 * H/W Platform : RSK+RZA1H CPU Board
thedo 166:240bc5a0f42a 29 * Description : This Header file contains the Macro Definitions & prototypes
thedo 166:240bc5a0f42a 30 * for the functions used in lcd.c
thedo 166:240bc5a0f42a 31 *******************************************************************************/
thedo 166:240bc5a0f42a 32 /*******************************************************************************
thedo 166:240bc5a0f42a 33 * History : DD.MM.YYYY Version Description
thedo 166:240bc5a0f42a 34 * : 21.10.2014 1.00
thedo 166:240bc5a0f42a 35 *******************************************************************************/
thedo 166:240bc5a0f42a 36
thedo 166:240bc5a0f42a 37 /* Multiple inclusion prevention macro */
thedo 166:240bc5a0f42a 38 #ifndef ASCII_H
thedo 166:240bc5a0f42a 39 #define ASCII_H
thedo 166:240bc5a0f42a 40
thedo 166:240bc5a0f42a 41 /******************************************************************************
thedo 166:240bc5a0f42a 42 Macro Definitions
thedo 166:240bc5a0f42a 43 ******************************************************************************/
thedo 166:240bc5a0f42a 44 extern const char g_ascii_table[][6];
thedo 166:240bc5a0f42a 45
thedo 166:240bc5a0f42a 46 /* ASCII_H */
thedo 166:240bc5a0f42a 47 #endif
thedo 166:240bc5a0f42a 48
thedo 166:240bc5a0f42a 49