mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-23 11:09:28 -05:00
Apply release changes to main branch (#759)
* Update History.txt and README.md for December release (#744) * Update History.txt and README.md for release * Bump mbedtls submodule to v2.28.0 (#745) * Patch project files for mbedtls (#751) * Apply group 1 patches * Apply patches for group 2 * Update project files for mbedTLS new version Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> * Fix warnings in projects Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> * Fix warnings in HTTP_S3_Download demo Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com> * Update changelog and history for corePKCS11 update (#752) * Update submodule pointer and manifest.yml for corePKCS11 (#754) * Update readme and history.txt to show that Sigv4 is a newly added library (#756) * Revert update to v143 of VS toolset (#757) * [AUTO][RELEASE]: Bump file header version to "202112.00" * Update file headers to satisfy core checks Co-authored-by: Muneeb Ahmed <54290492+muneebahmed10@users.noreply.github.com> Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com> Co-authored-by: johnrhen <johnrhen@users.noreply.github.com>
This commit is contained in:
parent
4f71a94a70
commit
43defa566c
1707 changed files with 7253 additions and 6354 deletions
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* 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
|
||||
|
|
@ -19,10 +19,9 @@
|
|||
* 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.
|
||||
*
|
||||
* http://www.FreeRTOS.org
|
||||
* http://aws.amazon.com/freertos
|
||||
* https://www.FreeRTOS.org
|
||||
* https://aws.amazon.com/freertos
|
||||
*
|
||||
* 1 tab == 4 spaces!
|
||||
*/
|
||||
|
||||
#ifndef FREERTOS_CONFIG_H
|
||||
|
|
@ -36,7 +35,7 @@
|
|||
*
|
||||
* THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE
|
||||
* FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.
|
||||
* http://www.freertos.org/a00110.html
|
||||
* https://www.FreeRTOS.org/a00110.html
|
||||
*
|
||||
* The bottom of this file contains some constants specific to running the UDP
|
||||
* stack in this demo. Constants specific to FreeRTOS+TCP itself (rather than
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* 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
|
||||
|
|
@ -19,17 +19,16 @@
|
|||
* 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.
|
||||
*
|
||||
* http://www.FreeRTOS.org
|
||||
* http://aws.amazon.com/freertos
|
||||
* https://www.FreeRTOS.org
|
||||
* https://aws.amazon.com/freertos
|
||||
*
|
||||
* 1 tab == 4 spaces!
|
||||
*/
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* See the following URL for configuration information.
|
||||
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/TCP_IP_Configuration.html
|
||||
* https://www.FreeRTOS.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/TCP_IP_Configuration.html
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
|
|
@ -108,7 +107,7 @@ extern void vLoggingPrintf( const char * pcFormatString,
|
|||
* task. This setting is less important when the FreeRTOS Win32 simulator is used
|
||||
* as the Win32 simulator only stores a fixed amount of information on the task
|
||||
* stack. FreeRTOS includes optional stack overflow detection, see:
|
||||
* http://www.freertos.org/Stacks-and-stack-overflow-checking.html */
|
||||
* https://www.FreeRTOS.org/Stacks-and-stack-overflow-checking.html */
|
||||
#define ipconfigIP_TASK_STACK_SIZE_WORDS ( configMINIMAL_STACK_SIZE * 5 )
|
||||
|
||||
/* ipconfigRAND32() is called by the IP stack to generate random numbers for
|
||||
|
|
@ -122,7 +121,7 @@ extern UBaseType_t uxRand();
|
|||
/* If ipconfigUSE_NETWORK_EVENT_HOOK is set to 1 then FreeRTOS+TCP will call the
|
||||
* network event hook at the appropriate times. If ipconfigUSE_NETWORK_EVENT_HOOK
|
||||
* is not set to 1 then the network event hook will never be called. See
|
||||
* http://www.FreeRTOS.org/FreeRTOS-Plus/FreeRTOS_Plus_UDP/API/vApplicationIPNetworkEventHook.shtml
|
||||
* https://www.FreeRTOS.org/FreeRTOS-Plus/FreeRTOS_Plus_UDP/API/vApplicationIPNetworkEventHook.shtml
|
||||
*/
|
||||
#define ipconfigUSE_NETWORK_EVENT_HOOK 1
|
||||
|
||||
|
|
|
|||
|
|
@ -163,6 +163,7 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\cipher.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\cipher_wrap.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\cmac.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\constant_time.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ctr_drbg.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\debug.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\des.c" />
|
||||
|
|
@ -184,6 +185,8 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\md4.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\md5.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\memory_buffer_alloc.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\mps_reader.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\mps_trace.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\net_sockets.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\nist_kw.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\oid.c" />
|
||||
|
|
@ -199,6 +202,14 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\platform.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\platform_util.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\poly1305.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_aead.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_cipher.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_client.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_driver_wrappers.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_ecp.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_hash.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_mac.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_rsa.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_se.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_slot_management.c" />
|
||||
|
|
@ -218,6 +229,7 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_srv.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_ticket.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_tls.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_tls13_keys.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\threading.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\timing.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\version.c" />
|
||||
|
|
@ -230,7 +242,6 @@
|
|||
<ClCompile Include="..\..\thirdparty\mbedtls\library\x509_crt.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\x509_csr.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\xtea.c" />
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\error.c" />
|
||||
<ClCompile Include="..\..\Source\corePKCS11\source\dependency\3rdparty\mbedtls_utils\mbedtls_utils.c" />
|
||||
<ClCompile Include="..\..\Source\corePKCS11\source\core_pkcs11.c" />
|
||||
<ClCompile Include="..\..\Source\corePKCS11\source\core_pki_utils.c" />
|
||||
|
|
@ -370,11 +381,8 @@
|
|||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_invasive.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_its.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_se.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_service_integration.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_slot_management.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_storage.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\ssl_invasive.h" />
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\include\mbedtls\error.h" />
|
||||
<ClInclude Include="..\..\Source\corePKCS11\source\dependency\3rdparty\pkcs11\pkcs11.h" />
|
||||
<ClInclude Include="..\..\Source\corePKCS11\source\dependency\3rdparty\pkcs11\pkcs11f.h" />
|
||||
<ClInclude Include="..\..\Source\corePKCS11\source\dependency\3rdparty\pkcs11\pkcs11t.h" />
|
||||
|
|
@ -391,8 +399,7 @@
|
|||
<ClInclude Include="FreeRTOSConfig.h" />
|
||||
<ClInclude Include="FreeRTOSIPConfig.h" />
|
||||
<ClInclude Include="core_sntp_config.h" />
|
||||
<ClInclude Include="aws_mbedtls_config.h" />
|
||||
<ClInclude Include="threading_alt.h" />
|
||||
<ClInclude Include="mbedtls_config.h" />
|
||||
<ClInclude Include="core_pkcs11_config.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
|
|
|
|||
|
|
@ -41,9 +41,6 @@
|
|||
<Filter Include="FreeRTOS+\FreeRTOS IoT Libraries\standard\coreSNTP\include">
|
||||
<UniqueIdentifier>{6ad56e6d-c330-4830-8f4b-c75b05dfa866}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="FreeRTOS+\FreeRTOS IoT Libraries\platform\logging">
|
||||
<UniqueIdentifier>{59d75faa-e4df-4d85-bf56-67e9cc801004}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Config">
|
||||
<UniqueIdentifier>{1407130d-da4c-4bcc-8ca0-4cf77f4cf97f}</UniqueIdentifier>
|
||||
</Filter>
|
||||
|
|
@ -65,6 +62,21 @@
|
|||
<Filter Include="FreeRTOS+\FreeRTOS IoT Libraries\standard\corePKCS11\include">
|
||||
<UniqueIdentifier>{817c6143-0ae9-4cac-828f-08f0da380f99}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="FreeRTOS+\FreeRTOS IoT Libraries\platform">
|
||||
<UniqueIdentifier>{6622f8c1-6657-42cf-b7ed-3997214e31cf}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="FreeRTOS+\FreeRTOS IoT Libraries\platform\logging">
|
||||
<UniqueIdentifier>{ad9767ea-105b-4044-9a9f-b86fae9acafc}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="FreeRTOS+\FreeRTOS IoT Libraries\platform\mbedtls">
|
||||
<UniqueIdentifier>{c95e7d65-b87f-40d1-ba87-135dfe473249}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="FreeRTOS+\FreeRTOS IoT Libraries\platform\backoff_algorithm">
|
||||
<UniqueIdentifier>{354fa114-d64f-43c8-b4ff-3d5054266970}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="FreeRTOS+\FreeRTOS IoT Libraries\platform\backoff_algorithm\include">
|
||||
<UniqueIdentifier>{af12f263-b6fc-4b33-991a-cd9f95a51073}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\FreeRTOS\Source\portable\MSVC-MingW\port.c">
|
||||
|
|
@ -184,6 +196,9 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\cmac.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\constant_time.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ctr_drbg.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -247,6 +262,12 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\memory_buffer_alloc.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\mps_reader.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\mps_trace.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\net_sockets.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -331,6 +352,9 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_tls.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\ssl_tls13_keys.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\threading.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -370,6 +394,45 @@
|
|||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_aead.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_cipher.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_client.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_driver_wrappers.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_ecp.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_hash.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_mac.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_rsa.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_se.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_slot_management.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_storage.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_its_file.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\ThirdParty\mbedtls\library\psa_crypto_se.c">
|
||||
<Filter>FreeRTOS+\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -400,12 +463,25 @@
|
|||
<ClCompile Include="..\..\Source\corePKCS11\source\core_pki_utils.c">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\standard\corePKCS11</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="main.c" />
|
||||
<ClCompile Include="..\..\Source\Utilities\mbedtls_freertos\mbedtls_bio_freertos_plus_tcp.c">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\Source\Utilities\mbedtls_freertos\mbedtls_freertos_port.c">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\Source\corePKCS11\source\dependency\3rdparty\mbedtls_utils\mbedtls_utils.c">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\mbedtls</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\Source\Application-Protocols\coreSNTP\source\core_sntp_serializer.c" />
|
||||
<ClCompile Include="..\..\Source\Application-Protocols\coreSNTP\source\core_sntp_client.c" />
|
||||
<ClCompile Include="main.c" />
|
||||
<ClCompile Include="..\..\Source\Utilities\backoff_algorithm\source\backoff_algorithm.c">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\backoff_algorithm</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\Source\Application-Protocols\coreSNTP\source\core_sntp_client.c">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\standard\coreSNTP</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\Source\Application-Protocols\coreSNTP\source\core_sntp_serializer.c">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\standard\coreSNTP</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\..\FreeRTOS-Plus\Source\FreeRTOS-Plus-TCP\include\NetworkInterface.h">
|
||||
|
|
@ -477,15 +553,6 @@
|
|||
<ClInclude Include="..\..\..\FreeRTOS\Source\include\projdefs.h">
|
||||
<Filter>FreeRTOS\Source\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\FreeRTOS-Plus\Source\Utilities\logging\logging.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\logging</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\FreeRTOS-Plus\Source\Utilities\logging\logging_levels.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\logging</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\FreeRTOS-Plus\Source\Utilities\logging\logging_stack.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\logging</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="FreeRTOSConfig.h">
|
||||
<Filter>Config</Filter>
|
||||
</ClInclude>
|
||||
|
|
@ -501,7 +568,7 @@
|
|||
<ClInclude Include="common_demo_include.h">
|
||||
<Filter>Config</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\include\mbedtls\aes.h">
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\include\mbedtls\aes.h">
|
||||
<Filter>FreeRTOS+\mbedtls\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\include\mbedtls\aesni.h">
|
||||
|
|
@ -759,9 +826,59 @@
|
|||
<ClInclude Include="..\..\Source\corePKCS11\source\include\core_pki_utils.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\standard\corePKCS11\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\Source\Application-Protocols\coreSNTP\source\include\core_sntp_config_defaults.h" />
|
||||
<ClInclude Include="..\..\Source\Application-Protocols\coreSNTP\source\include\core_sntp_serializer.h" />
|
||||
<ClInclude Include="..\..\Source\Application-Protocols\coreSNTP\source\include\core_sntp_client.h" />
|
||||
<ClInclude Include="core_pkcs11_config.h" />
|
||||
<ClInclude Include="..\..\..\FreeRTOS-Plus\Source\Utilities\logging\logging.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\logging</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\FreeRTOS-Plus\Source\Utilities\logging\logging_levels.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\logging</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\FreeRTOS-Plus\Source\Utilities\logging\logging_stack.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\logging</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="core_pkcs11_config.h">
|
||||
<Filter>Config</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="mbedtls_config.h">
|
||||
<Filter>Config</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\Source\Utilities\backoff_algorithm\source\include\backoff_algorithm.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\platform\backoff_algorithm\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\Source\Application-Protocols\coreSNTP\source\include\core_sntp_client.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\standard\coreSNTP\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\Source\Application-Protocols\coreSNTP\source\include\core_sntp_config_defaults.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\standard\coreSNTP\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\Source\Application-Protocols\coreSNTP\source\include\core_sntp_serializer.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS IoT Libraries\standard\coreSNTP\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\Source\FreeRTOS-Plus-TCP\include\FreeRTOS_errno_TCP.h">
|
||||
<Filter>FreeRTOS+\FreeRTOS+TCP\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_core.h">
|
||||
<Filter>FreeRTOS+\mbedtls\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_invasive.h">
|
||||
<Filter>FreeRTOS+\mbedtls\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_its.h">
|
||||
<Filter>FreeRTOS+\mbedtls\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_se.h">
|
||||
<Filter>FreeRTOS+\mbedtls\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_slot_management.h">
|
||||
<Filter>FreeRTOS+\mbedtls\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\psa_crypto_storage.h">
|
||||
<Filter>FreeRTOS+\mbedtls\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\include\mbedtls\psa_util.h">
|
||||
<Filter>FreeRTOS+\mbedtls\include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\ThirdParty\mbedtls\library\common.h">
|
||||
<Filter>FreeRTOS+\mbedtls\include</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* 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
|
||||
|
|
@ -19,8 +19,8 @@
|
|||
* 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.
|
||||
*
|
||||
* http://www.FreeRTOS.org
|
||||
* http://aws.amazon.com/freertos
|
||||
* https://www.FreeRTOS.org
|
||||
* https://aws.amazon.com/freertos
|
||||
*/
|
||||
#ifndef COMMON_DEMO_INCLUDE_H
|
||||
#define COMMON_DEMO_INCLUDE_H
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* 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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* 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
|
||||
|
|
@ -19,8 +19,8 @@
|
|||
* 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.
|
||||
*
|
||||
* http://www.FreeRTOS.org
|
||||
* http://aws.amazon.com/freertos
|
||||
* https://www.FreeRTOS.org
|
||||
* https://aws.amazon.com/freertos
|
||||
*/
|
||||
#ifndef CORE_SNTP_CONFIG_H
|
||||
#define CORE_SNTP_CONFIG_H
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* 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
|
||||
|
|
@ -19,10 +19,9 @@
|
|||
* 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.
|
||||
*
|
||||
* http://www.FreeRTOS.org
|
||||
* http://aws.amazon.com/freertos
|
||||
* https://www.FreeRTOS.org
|
||||
* https://aws.amazon.com/freertos
|
||||
*
|
||||
* 1 tab == 4 spaces!
|
||||
*/
|
||||
|
||||
#ifndef DEMO_CONFIG_H
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* 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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS V202111.00
|
||||
* FreeRTOS V202112.00
|
||||
* 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue