]> git.sur5r.net Git - freertos/commitdiff
Added file required to build demo.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sat, 13 Feb 2010 21:00:16 +0000 (21:00 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sat, 13 Feb 2010 21:00:16 +0000 (21:00 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@975 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/SuperH_SH7216_Renesas/RTOSDemo/RenesasCode/typedefine.h [new file with mode: 0644]

diff --git a/Demo/SuperH_SH7216_Renesas/RTOSDemo/RenesasCode/typedefine.h b/Demo/SuperH_SH7216_Renesas/RTOSDemo/RenesasCode/typedefine.h
new file mode 100644 (file)
index 0000000..5532187
--- /dev/null
@@ -0,0 +1,65 @@
+/******************************************************************************\r
+* File Name    : typedefine.h\r
+* Version      : 1.0\r
+* Device(s)    : Renesas\r
+* Tool-Chain   : Renesas SH2A V9+\r
+* OS           : None\r
+* H/W Platform : SH2A\r
+* Description  : Type Definition File\r
+*******************************************************************************\r
+* History      : DD.MM.YYYY Ver. Description\r
+*              : 01.08.2009 1.00 MAB First Release\r
+******************************************************************************/\r
+\r
+/******************************************************************************\r
+  WARNING!  IN ACCORDANCE WITH THE USER LICENCE THIS CODE MUST NOT BE CONVEYED\r
+  OR REDISTRIBUTED IN COMBINATION WITH ANY SOFTWARE LICENSED UNDER TERMS THE\r
+  SAME AS OR SIMILAR TO THE GNU GENERAL PUBLIC LICENCE\r
+******************************************************************************/\r
+\r
+/******************************************************************************\r
+* DISCLAIMER\r
+* This software is supplied by Renesas Technology Corp. and is only\r
+* intended for use with Renesas products. No other uses are authorized.\r
+* This software is owned by Renesas Technology Corp. and is protected under\r
+* all applicable laws, including copyright laws.\r
+* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES\r
+* REGARDING THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY,\r
+* INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\r
+* PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY\r
+* DISCLAIMED.\r
+* TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS\r
+* TECHNOLOGY CORP. NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE\r
+* FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES\r
+* FOR ANY REASON RELATED TO THE THIS SOFTWARE, EVEN IF RENESAS OR ITS\r
+* AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\r
+* Renesas reserves the right, without notice, to make changes to this\r
+* software and to discontinue the availability of this software.\r
+* By using this software, you agree to the additional terms and\r
+* conditions found by accessing the following link:\r
+* http://www.renesas.com/disclaimer\r
+******************************************************************************/\r
+/* Copyright (C) 2008. Renesas Technology Corp.,       All Rights Reserved.  */\r
+/* Copyright (C) 2009. Renesas Technology Europe Ltd., All Rights Reserved.  */\r
+/*****************************************************************************/\r
+\r
+#ifndef _TYPE_DEFINE_H_\r
+#define _TYPE_DEFINE_H_\r
+\r
+\r
+typedef unsigned char Bool;\r
+\r
+// type defs for API standard\r
+\r
+typedef signed char char8_t;\r
+typedef unsigned char uchar8_t;\r
+typedef signed char int8_t;\r
+typedef unsigned char uint8_t;\r
+typedef signed short short16_t;\r
+typedef unsigned short ushort16_t;\r
+typedef signed long  int32_t;\r
+typedef unsigned long  uint32_t;\r
+typedef signed long long32_t;\r
+typedef unsigned long ulong32_t;\r
+\r
+#endif /* TYPEDEFINE_H */ \r