test public

Dependencies:   HttpServer_snapshot_mbed-os

Committer:
anhtran
Date:
Fri Oct 18 03:09:43 2019 +0000
Revision:
0:e9fd5575b10e
abc

Who changed what in which revision?

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