source: asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/targets/TARGET_RENESAS/TARGET_RZA1XX/common/r_typedefs.h@ 374

Last change on this file since 374 was 374, checked in by coas-nagasima, 5 years ago

mbed関連を更新
シリアルドライバをmbedのHALを使うよう変更
ファイルディスクリプタの処理を更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 2.7 KB
Line 
1/*******************************************************************************
2* DISCLAIMER
3* This software is supplied by Renesas Electronics Corporation and is only
4* intended for use with Renesas products. No other uses are authorized. This
5* software is owned by Renesas Electronics Corporation and is protected under
6* all applicable laws, including copyright laws.
7* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
8* THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
9* LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
10* AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
11* TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
12* ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
13* FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
14* ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
15* BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
16* Renesas reserves the right, without notice, to make changes to this software
17* and to discontinue the availability of this software. By using this software,
18* you agree to the additional terms and conditions found by accessing the
19* following link:
20* http://www.renesas.com/disclaimer
21* Copyright (C) 2012 - 2013 Renesas Electronics Corporation. All rights reserved.
22*******************************************************************************/
23/*******************************************************************************
24* File Name : r_typedefs.h
25* $Rev: 788 $
26* $Date:: 2014-04-07 18:57:13 +0900#$
27* Description : basic type definition
28******************************************************************************/
29#ifndef R_TYPEDEFS_H
30#define R_TYPEDEFS_H
31
32/******************************************************************************
33Includes <System Includes> , "Project Includes"
34******************************************************************************/
35#include <stddef.h>
36#include <stdbool.h>
37#include <stdint.h>
38#if defined(__ARM_NEON__)
39#include <arm_neon.h>
40#endif /* __ARM_NEON__ */
41
42#ifndef float32_t
43typedef float float32_t;
44#endif
45#ifndef float64_t
46typedef double float64_t;
47#endif
48
49
50/******************************************************************************
51Typedef definitions
52******************************************************************************/
53typedef char char_t;
54#ifndef bool_t
55typedef bool bool_t;
56#endif
57typedef int int_t;
58typedef long double float128_t;
59typedef signed long long_t;
60typedef unsigned long ulong_t;
61
62#endif /* R_TYPEDEFS_H */
63
Note: See TracBrowser for help on using the repository browser.