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 * Copyright (C) 2012 - 2014 Renesas Electronics Corporation. All rights reserved.
anhtran 0:e9fd5575b10e 22 *******************************************************************************/
anhtran 0:e9fd5575b10e 23 /******************************************************************************
anhtran 0:e9fd5575b10e 24 * $FileName: Project_Config.h $
anhtran 0:e9fd5575b10e 25 * $Rev: 35 $
anhtran 0:e9fd5575b10e 26 * $Date:: 2014-04-15 21:38:18 +0900#$
anhtran 0:e9fd5575b10e 27 * Description : This file is for drivers and applications
anhtran 0:e9fd5575b10e 28 ******************************************************************************/
anhtran 0:e9fd5575b10e 29
anhtran 0:e9fd5575b10e 30 #ifndef PROJECT_CONFIG_H
anhtran 0:e9fd5575b10e 31 #define PROJECT_CONFIG_H
anhtran 0:e9fd5575b10e 32
anhtran 0:e9fd5575b10e 33
anhtran 0:e9fd5575b10e 34 /******************************************************************************
anhtran 0:e9fd5575b10e 35 Includes <System Includes> , "Project Includes"
anhtran 0:e9fd5575b10e 36 ******************************************************************************/
anhtran 0:e9fd5575b10e 37
anhtran 0:e9fd5575b10e 38 /* This file must be included at first of source file */
anhtran 0:e9fd5575b10e 39 /* Include configuration header files of drivers and applications */
anhtran 0:e9fd5575b10e 40 /* The #include parameter must be not depended on include path for other projects */
anhtran 0:e9fd5575b10e 41 #include "Project_Config_Sub.h"
anhtran 0:e9fd5575b10e 42 #include "../ospl/inc/r_ospl_config.h"
anhtran 0:e9fd5575b10e 43 #if defined(TARGET_RZA1H) /* mbed */
anhtran 0:e9fd5575b10e 44 #include "../common/inc/clib_drivers_config.h"
anhtran 0:e9fd5575b10e 45 #include "../RGA/inc/RGA_Config.h"
anhtran 0:e9fd5575b10e 46 #endif
anhtran 0:e9fd5575b10e 47
anhtran 0:e9fd5575b10e 48
anhtran 0:e9fd5575b10e 49 #ifdef __cplusplus
anhtran 0:e9fd5575b10e 50 extern "C" {
anhtran 0:e9fd5575b10e 51 #endif /* __cplusplus */
anhtran 0:e9fd5575b10e 52
anhtran 0:e9fd5575b10e 53
anhtran 0:e9fd5575b10e 54 /******************************************************************************
anhtran 0:e9fd5575b10e 55 Typedef definitions
anhtran 0:e9fd5575b10e 56 ******************************************************************************/
anhtran 0:e9fd5575b10e 57
anhtran 0:e9fd5575b10e 58 /******************************************************************************
anhtran 0:e9fd5575b10e 59 Macro definitions
anhtran 0:e9fd5575b10e 60 ******************************************************************************/
anhtran 0:e9fd5575b10e 61
anhtran 0:e9fd5575b10e 62 /******************************************************************************
anhtran 0:e9fd5575b10e 63 Variable Externs
anhtran 0:e9fd5575b10e 64 ******************************************************************************/
anhtran 0:e9fd5575b10e 65
anhtran 0:e9fd5575b10e 66 /******************************************************************************
anhtran 0:e9fd5575b10e 67 Functions Prototypes
anhtran 0:e9fd5575b10e 68 ******************************************************************************/
anhtran 0:e9fd5575b10e 69
anhtran 0:e9fd5575b10e 70 #ifdef __cplusplus
anhtran 0:e9fd5575b10e 71 } /* extern "C" */
anhtran 0:e9fd5575b10e 72 #endif /* __cplusplus */
anhtran 0:e9fd5575b10e 73
anhtran 0:e9fd5575b10e 74 #endif /* R_OSPL_H */
anhtran 0:e9fd5575b10e 75