1 /* Adapted for use with IAR Embedded Workbench */
2 /***********************************************************************************************************************
3 * DISCLAIMER
4 * This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products. No
5 * other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all
6 * 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 LIMITED TO WARRANTIES OF MERCHANTABILITY,
9 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED. TO THE MAXIMUM
10 * EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES
11 * SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS
12 * SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
13 * Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability of
14 * this software. By using this software, you agree to the additional terms and conditions found by accessing the
15 * following link:
16 * http://www.renesas.com/disclaimer
17 *
18 * Copyright (C) 2012 Renesas Electronics Corporation. All rights reserved.
19 ***********************************************************************************************************************/
20 /***********************************************************************************************************************
21 * File Name     : hwsetup.h
22 * Version      : 1.0
23 * Description  : Hardware setup header file..
24 ***********************************************************************************************************************/
25 /***********************************************************************************************************************
26 * History : DD.MM.YYYY Version  Description
27 *         : 26.10.2011 1.00     First Release
28 ***********************************************************************************************************************/
29 
30 /***********************************************************************************************************************
31 Macro definitions
32 ***********************************************************************************************************************/
33 /* Multiple inclusion prevention macro */
34 #ifndef HWSETUP_H
35 #define HWSETUP_H
36 
37 /***********************************************************************************************************************
38 Includes   <System Includes> , "Project Includes"
39 ***********************************************************************************************************************/
40 #include <iorx65n.h>
41 
42 /***********************************************************************************************************************
43 Exported global functions (to be accessed by other files)
44 ***********************************************************************************************************************/
45 /* Hardware setup funtion declaration */
46 void hardware_setup(void);
47 
48 /* End of multiple inclusion prevention macro */
49 #endif
50