Fix missing includes in defender demo (#418)

report_builder.c was missing FreeRTOS includes.
Additionally fixes root CA comments in AWS demos.
This commit is contained in:
Archit Gupta
2020-11-23 16:57:44 -08:00
committed by GitHub
parent aad429ba09
commit ced1845508
4 changed files with 13 additions and 6 deletions

View File

@ -133,6 +133,7 @@ extern void vLoggingPrintf( const char * pcFormatString,
* "...base64 data...\n"\ * "...base64 data...\n"\
* "-----END CERTIFICATE-----\n" * "-----END CERTIFICATE-----\n"
* *
* #define democonfigROOT_CA_PEM "...insert here..."
*/ */
/** /**

View File

@ -29,6 +29,10 @@
#include <string.h> #include <string.h>
#include <stdint.h> #include <stdint.h>
/* Kernel includes. */
#include "FreeRTOS.h"
#include "task.h"
/* Demo config. */ /* Demo config. */
#include "demo_config.h" #include "demo_config.h"

View File

@ -1,5 +1,5 @@
/* /*
* FreeRTOS Kernel V10.3.0 * FreeRTOS V202011.00
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy of * Permission is hereby granted, free of charge, to any person obtaining a copy of
@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* *
* http://www.FreeRTOS.org * https://www.FreeRTOS.org
* http://aws.amazon.com/freertos * https://github.com/FreeRTOS
* *
*/ */
@ -132,6 +132,7 @@ extern void vLoggingPrintf( const char * pcFormatString,
* "...base64 data...\n"\ * "...base64 data...\n"\
* "-----END CERTIFICATE-----\n" * "-----END CERTIFICATE-----\n"
* *
* #define democonfigROOT_CA_PEM "...insert here..."
*/ */
/** /**

View File

@ -1,5 +1,5 @@
/* /*
* FreeRTOS Kernel V10.3.0 * FreeRTOS V202011.00
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy of * Permission is hereby granted, free of charge, to any person obtaining a copy of
@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* *
* http://www.FreeRTOS.org * https://www.FreeRTOS.org
* http://aws.amazon.com/freertos * https://github.com/FreeRTOS
* *
*/ */
@ -125,6 +125,7 @@ extern void vLoggingPrintf( const char * pcFormatString,
* "...base64 data...\n"\ * "...base64 data...\n"\
* "-----END CERTIFICATE-----\n" * "-----END CERTIFICATE-----\n"
* *
* #define democonfigROOT_CA_PEM "...insert here..."
*/ */
/** /**