]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/RX600_RX63N-RSK_Renesas/RTOSDemo/Renesas-Files/platform.h
Add FreeRTOS-Plus directory.
[freertos] / FreeRTOS / Demo / RX600_RX63N-RSK_Renesas / RTOSDemo / Renesas-Files / platform.h
diff --git a/FreeRTOS/Demo/RX600_RX63N-RSK_Renesas/RTOSDemo/Renesas-Files/platform.h b/FreeRTOS/Demo/RX600_RX63N-RSK_Renesas/RTOSDemo/Renesas-Files/platform.h
new file mode 100644 (file)
index 0000000..1851bfb
--- /dev/null
@@ -0,0 +1,75 @@
+/***********************************************************************************************************************\r
+* DISCLAIMER\r
+* This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products. No \r
+* other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all \r
+* applicable laws, including copyright laws. \r
+* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING\r
+* THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, \r
+* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED. TO THE MAXIMUM \r
+* EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES \r
+* SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS \r
+* SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\r
+* Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability of \r
+* this software. By using this software, you agree to the additional terms and conditions found by accessing the \r
+* following link:\r
+* http://www.renesas.com/disclaimer \r
+*\r
+* Copyright (C) 2012 Renesas Electronics Corporation. All rights reserved.    \r
+***********************************************************************************************************************/\r
+/***********************************************************************************************************************\r
+* File Name       : platform.h\r
+* Version      : 1.20 \r
+* Description  : The user chooses which MCU and board they are developing for in this file. If the board you are using\r
+*                is not listed below, please add your own or use the default 'User Board'.\r
+***********************************************************************************************************************/\r
+/***********************************************************************************************************************\r
+* History : DD.MM.YYYY Version  Description\r
+*         : 30.11.2011 1.00     First Release\r
+*         : 13.01.2012 1.10     Moved from having platform defined using macro defintion, to having platform defined\r
+*                               by choosing an include path. This makes this file simpler and cleans up the issue\r
+*                               where HEW shows all header files for all platforms under 'Dependencies'.\r
+*         : 14.02.2012 1.20     Added RX210 BSP.\r
+***********************************************************************************************************************/\r
+\r
+#ifndef _PLATFORM_H_\r
+#define _PLATFORM_H_\r
+\r
+/***********************************************************************************************************************\r
+DEFINE YOUR SYSTEM - UNCOMMENT THE INCLUDE PATH FOR THE PLATFORM YOU ARE USING.\r
+***********************************************************************************************************************/\r
+/* RSKRX610 */\r
+//#include "./board/rskrx610/r_bsp.h"\r
+\r
+/* RSKRX62N */\r
+//#include "./board/rskrx62n/r_bsp.h"\r
+\r
+/* RSKRX62T */\r
+//#include "./board/rskrx62t/r_bsp.h"\r
+\r
+/* RDKRX62N */\r
+//#include "./board/rdkrx62n/r_bsp.h"\r
+\r
+/* RSKRX630 */\r
+//#include "./board/rskrx630/r_bsp.h"\r
+\r
+/* RSKRX63N */\r
+#include "./board/rskrx63n/r_bsp.h"\r
+\r
+/* RDKRX63N */\r
+//#include "./board/rdkrx63n/r_bsp.h"\r
+\r
+/* RSKRX210 */\r
+//#include "./board/rskrx210/r_bsp.h"\r
+\r
+/* User Board - Define your own board here. */\r
+//#include "./board/user/r_bsp.h"\r
+\r
+/***********************************************************************************************************************\r
+MAKE SURE AT LEAST ONE PLATFORM WAS DEFINED - DO NOT EDIT BELOW THIS POINT\r
+***********************************************************************************************************************/\r
+#ifndef PLATFORM_DEFINED\r
+#error  "Error - No platform defined in platform.h!"\r
+#endif\r
+\r
+#endif /* _PLATFORM_H_ */\r
+\r