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.
Merge pull request #2 from resg-xuan/rx72n-envision-kit-experiment-3
[RX72N EnvisionKit] Added MQTT demo project
- Loading branch information
Showing
6 changed files
with
574 additions
and
475 deletions.
There are no files selected for viewing
158 changes: 79 additions & 79 deletions
158
projects/renesas/rx72n-envision-kit/e2studio/aws_demos/.cproject
Large diffs are not rendered by default.
Oops, something went wrong.
483 changes: 239 additions & 244 deletions
483
projects/renesas/rx72n-envision-kit/e2studio/aws_demos/.project
Large diffs are not rendered by default.
Oops, something went wrong.
304 changes: 152 additions & 152 deletions
304
projects/renesas/rx72n-envision-kit/e2studio/aws_demos/aws_demos HardwareDebug.launch
Large diffs are not rendered by default.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
...rx72n-envision-kit/aws_demos/application_code/renesas_code/frtos_skeleton/task_function.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,23 @@ | ||
/*********************************************************************************************************************** | ||
* 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) 2019 Renesas Electronics Corporation. All rights reserved. | ||
***********************************************************************************************************************/ | ||
|
||
#ifndef TASK_FUNCTION_H_ | ||
#define TASK_FUNCTION_H_ | ||
|
||
#endif /* TASK_FUNCTION_H_ */ |
80 changes: 80 additions & 0 deletions
80
...envision-kit/aws_demos/application_code/renesas_code/frtos_startup/freertos_object_init.c
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,80 @@ | ||
/*********************************************************************************************************************** | ||
* 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) 2019 Renesas Electronics Corporation. All rights reserved. | ||
**********************************************************************************************************************/ | ||
/*********************************************************************************************************************** | ||
* File Name : freertos_object_init.c | ||
* Version : 1.0 | ||
* Description : | ||
**********************************************************************************************************************/ | ||
/*********************************************************************************************************************** | ||
* History : DD.MM.YYYY Version Description | ||
* : 07.12.2018 1.00 First Release | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Includes <System Includes> , "Project Includes" | ||
**********************************************************************************************************************/ | ||
#include "FreeRTOS.h" | ||
#include "freertos_start.h" | ||
/*********************************************************************************************************************** | ||
* Macro definitions | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Typedef definitions | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Private global variables and functions | ||
**********************************************************************************************************************/ | ||
void Kernel_Object_init (void); | ||
void Object_init_manual (void); | ||
/*********************************************************************************************************************** | ||
* Function Name: Kernel_Object_init | ||
* Description : This function initializes FreeRTOS objects. | ||
* Arguments : None. | ||
* Return Value : None. | ||
**********************************************************************************************************************/ | ||
void Kernel_Object_init (void) | ||
{ | ||
/************** task creation ****************************/ | ||
|
||
/************** semaphore creation ***********************/ | ||
|
||
/************** queue creation ***************************/ | ||
|
||
/************** software time creation **************************/ | ||
|
||
/************** event groups creation ********************/ | ||
|
||
/************** stream buffer creation *************************/ | ||
|
||
/************** message buffer creation *********************/ | ||
|
||
} /* End of function Kernel_Object_init()*/ | ||
|
||
/*********************************************************************************************************************** | ||
* Function Name : Object_init_manual | ||
* Description : This function re-initializes FreeRTOS objects and should be called at runtime. | ||
* Arguments : None. | ||
* Return value : None. | ||
**********************************************************************************************************************/ | ||
void Object_init_manual (void) | ||
{ | ||
/************** task creation ****************************/ | ||
} /* End of function Object_init_manual()*/ |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
set( | ||
AFR_MANIFEST_SUPPORTED_BOARDS | ||
"rx65n-rsk" | ||
"rx72n-envision-kit" | ||
CACHE INTERNAL "Supported boards list." | ||
) | ||
|
||
|