]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RX600_RX63N-RSK_Renesas/RTOSDemo/Renesas-Files/platform.h
1851bfb3edec1be9e2d3ba6aa7507b697f644e35
[freertos] / FreeRTOS / Demo / RX600_RX63N-RSK_Renesas / RTOSDemo / Renesas-Files / platform.h
1 /***********************************************************************************************************************\r
2 * DISCLAIMER\r
3 * This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products. No \r
4 * other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all \r
5 * applicable laws, including copyright laws. \r
6 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING\r
7 * THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, \r
8 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED. TO THE MAXIMUM \r
9 * EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES \r
10 * SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS \r
11 * SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\r
12 * Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability of \r
13 * this software. By using this software, you agree to the additional terms and conditions found by accessing the \r
14 * following link:\r
15 * http://www.renesas.com/disclaimer \r
16 *\r
17 * Copyright (C) 2012 Renesas Electronics Corporation. All rights reserved.    \r
18 ***********************************************************************************************************************/\r
19 /***********************************************************************************************************************\r
20 * File Name        : platform.h\r
21 * Version      : 1.20 \r
22 * Description  : The user chooses which MCU and board they are developing for in this file. If the board you are using\r
23 *                is not listed below, please add your own or use the default 'User Board'.\r
24 ***********************************************************************************************************************/\r
25 /***********************************************************************************************************************\r
26 * History : DD.MM.YYYY Version  Description\r
27 *         : 30.11.2011 1.00     First Release\r
28 *         : 13.01.2012 1.10     Moved from having platform defined using macro defintion, to having platform defined\r
29 *                               by choosing an include path. This makes this file simpler and cleans up the issue\r
30 *                               where HEW shows all header files for all platforms under 'Dependencies'.\r
31 *         : 14.02.2012 1.20     Added RX210 BSP.\r
32 ***********************************************************************************************************************/\r
33 \r
34 #ifndef _PLATFORM_H_\r
35 #define _PLATFORM_H_\r
36 \r
37 /***********************************************************************************************************************\r
38 DEFINE YOUR SYSTEM - UNCOMMENT THE INCLUDE PATH FOR THE PLATFORM YOU ARE USING.\r
39 ***********************************************************************************************************************/\r
40 /* RSKRX610 */\r
41 //#include "./board/rskrx610/r_bsp.h"\r
42 \r
43 /* RSKRX62N */\r
44 //#include "./board/rskrx62n/r_bsp.h"\r
45 \r
46 /* RSKRX62T */\r
47 //#include "./board/rskrx62t/r_bsp.h"\r
48 \r
49 /* RDKRX62N */\r
50 //#include "./board/rdkrx62n/r_bsp.h"\r
51 \r
52 /* RSKRX630 */\r
53 //#include "./board/rskrx630/r_bsp.h"\r
54 \r
55 /* RSKRX63N */\r
56 #include "./board/rskrx63n/r_bsp.h"\r
57 \r
58 /* RDKRX63N */\r
59 //#include "./board/rdkrx63n/r_bsp.h"\r
60 \r
61 /* RSKRX210 */\r
62 //#include "./board/rskrx210/r_bsp.h"\r
63 \r
64 /* User Board - Define your own board here. */\r
65 //#include "./board/user/r_bsp.h"\r
66 \r
67 /***********************************************************************************************************************\r
68 MAKE SURE AT LEAST ONE PLATFORM WAS DEFINED - DO NOT EDIT BELOW THIS POINT\r
69 ***********************************************************************************************************************/\r
70 #ifndef PLATFORM_DEFINED\r
71 #error  "Error - No platform defined in platform.h!"\r
72 #endif\r
73 \r
74 #endif /* _PLATFORM_H_ */\r
75 \r