This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
forked from aws/amazon-freertos
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADDED] missing files for RX65N Cloud Kit boot loader.
Signed-off-by: HirokiIshiguro <[email protected]>
- Loading branch information
1 parent
bb6117c
commit 080a2b5
Showing
109 changed files
with
96,850 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
...ud-kit-uart-sx-ulpgn/e2studio/boot_loader/src/smc_gen/r_bsp/board/generic_rx65n/hwsetup.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/*********************************************************************************************************************** | ||
* DISCLAIMER | ||
* This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products. No | ||
* other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all | ||
* applicable laws, including copyright laws. | ||
* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING | ||
* THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED. TO THE MAXIMUM | ||
* EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES | ||
* SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS | ||
* SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. | ||
* Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability of | ||
* this software. By using this software, you agree to the additional terms and conditions found by accessing the | ||
* following link: | ||
* http://www.renesas.com/disclaimer | ||
* | ||
* Copyright (C) 2016 Renesas Electronics Corporation. All rights reserved. | ||
***********************************************************************************************************************/ | ||
/*********************************************************************************************************************** | ||
* File Name : hwsetup.h | ||
* Description : Hardware setup header file. | ||
***********************************************************************************************************************/ | ||
/*********************************************************************************************************************** | ||
* History : DD.MM.YYYY Version Description | ||
* : 01.10.2016 1.00 First Release | ||
* : 28.02.2019 1.01 Fixed coding style. | ||
***********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
Macro definitions | ||
***********************************************************************************************************************/ | ||
/* Multiple inclusion prevention macro */ | ||
#ifndef HWSETUP_H | ||
#define HWSETUP_H | ||
|
||
/*********************************************************************************************************************** | ||
Exported global functions (to be accessed by other files) | ||
***********************************************************************************************************************/ | ||
void hardware_setup(void); //r_bsp internal function. DO NOT CALL. | ||
|
||
/* End of multiple inclusion prevention macro */ | ||
#endif | ||
|
98 changes: 98 additions & 0 deletions
98
...loud-kit-uart-sx-ulpgn/e2studio/boot_loader/src/smc_gen/r_bsp/board/generic_rx65n/r_bsp.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/*********************************************************************************************************************** | ||
* DISCLAIMER | ||
* This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products. No | ||
* other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all | ||
* applicable laws, including copyright laws. | ||
* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING | ||
* THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED. TO THE MAXIMUM | ||
* EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES | ||
* SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS | ||
* SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. | ||
* Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability of | ||
* this software. By using this software, you agree to the additional terms and conditions found by accessing the | ||
* following link: | ||
* http://www.renesas.com/disclaimer | ||
* | ||
* Copyright (C) 2017 Renesas Electronics Corporation. All rights reserved. | ||
***********************************************************************************************************************/ | ||
/*********************************************************************************************************************** | ||
* File Name : r_bsp.h | ||
* H/W Platform : GENERIC_RX65N | ||
* Description : Has the header files that should be included for this platform. | ||
***********************************************************************************************************************/ | ||
/*********************************************************************************************************************** | ||
* History : DD.MM.YYYY Version Description | ||
* : 15.05.2017 1.00 First Release | ||
* : 01.07.2018 1.01 Additional RTOS header file. | ||
* : 28.02.2019 2.00 Added the following include path. | ||
* - r_rx_compiler.h | ||
* - r_rtos.h | ||
* - r_bsp_interrupts.h | ||
* - mcu_clocks.h | ||
* - r_rx_intrinsic_functions.h | ||
* Modified the following include path. | ||
* - lowsrc.h | ||
* - r_bsp_mcu_startup.h | ||
* - vecttbl.h | ||
* Added support for GNUC and ICCRX. | ||
* Fixed coding style. | ||
***********************************************************************************************************************/ | ||
|
||
/* Make sure that no other platforms have already been defined. Do not touch this! */ | ||
#ifdef PLATFORM_DEFINED | ||
#error "Error - Multiple platforms defined in platform.h!" | ||
#else | ||
#define PLATFORM_DEFINED | ||
#endif | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
/*********************************************************************************************************************** | ||
INCLUDE APPROPRIATE MCU AND BOARD FILES | ||
***********************************************************************************************************************/ | ||
#include "mcu/all/r_bsp_common.h" | ||
#include "mcu/all/r_rx_compiler.h" | ||
|
||
#include "r_bsp_config.h" | ||
#include "r_bsp_interrupt_config.h" | ||
|
||
#include "mcu/all/lowlvl.h" | ||
#include "mcu/all/lowsrc.h" | ||
#include "mcu/all/r_bsp_mcu_startup.h" | ||
|
||
#if defined(__CCRX__) | ||
#include "mcu/rx65n/register_access/ccrx/iodefine.h" | ||
#elif defined(__GNUC__) | ||
#include "mcu/rx65n/register_access/gnuc/iodefine.h" | ||
#elif defined(__ICCRX__) | ||
#include "mcu/rx65n/register_access/iccrx/iodefine.h" | ||
#endif /* defined(__CCRX__), defined(__GNUC__), defined(__ICCRX__) */ | ||
#include "mcu/rx65n/r_bsp_cpu.h" | ||
#include "mcu/rx65n/r_bsp_locking.h" | ||
#include "mcu/rx65n/mcu_clocks.h" | ||
#include "mcu/rx65n/mcu_info.h" | ||
#include "mcu/rx65n/mcu_init.h" | ||
#include "mcu/rx65n/mcu_interrupts.h" | ||
#include "mcu/rx65n/mcu_locks.h" | ||
#include "mcu/rx65n/mcu_mapped_interrupts_private.h" | ||
#include "mcu/rx65n/mcu_mapped_interrupts.h" | ||
#include "mcu/rx65n/vecttbl.h" | ||
|
||
#include "board/generic_rx65n/hwsetup.h" | ||
|
||
#include "mcu/all/r_bsp_interrupts.h" | ||
#include "mcu/all/r_rx_intrinsic_functions.h" | ||
#include "mcu/all/r_rtos.h" | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#ifndef BSP_BOARD_GENERIC_RX65N | ||
#define BSP_BOARD_GENERIC_RX65N | ||
|
||
#endif /* BSP_BOARD_GENERIC_RX65N */ | ||
|
Oops, something went wrong.