From 0a3925d896d9ade1cff25dacfdc67421220a1165 Mon Sep 17 00:00:00 2001 From: Archit Aggarwal Date: Thu, 25 Jun 2020 11:48:12 -0700 Subject: [PATCH] Update versioning to 202007.00 (#2183) * Bump version number to 202007.00 across codebase * Update PROJECT_VERSION_MAJOR Cmake variable * Fix formatting in portmacro.h causing build failure --- CHANGELOG.md | 2 +- CMakeLists.txt | 4 ++-- demos/ble/aws_ble_gatt_server_demo.c | 2 +- demos/ble/iot_ble_numericComparison.c | 2 +- demos/defender/aws_iot_demo_defender.c | 2 +- demos/demo_runner/aws_demo.c | 2 +- demos/demo_runner/aws_demo_network_addr.c | 2 +- demos/demo_runner/aws_demo_version.c | 2 +- demos/demo_runner/iot_demo_freertos.c | 2 +- demos/demo_runner/iot_demo_runner.c | 2 +- .../include/aws_dev_mode_key_provisioning.h | 2 +- .../src/aws_dev_mode_key_provisioning.c | 2 +- demos/greengrass_connectivity/aws_greengrass_discovery_demo.c | 2 +- demos/https/iot_demo_https_common.c | 2 +- demos/https/iot_demo_https_common.h | 2 +- demos/https/iot_demo_https_s3_download_async.c | 2 +- demos/https/iot_demo_https_s3_download_sync.c | 2 +- demos/https/iot_demo_https_s3_upload_async.c | 2 +- demos/https/iot_demo_https_s3_upload_sync.c | 2 +- demos/include/aws_application_version.h | 2 +- demos/include/aws_ble_gatt_server_demo.h | 2 +- demos/include/aws_clientcredential.h | 2 +- demos/include/aws_clientcredential_keys.h | 2 +- demos/include/aws_demo.h | 2 +- demos/include/aws_iot_demo_network.h | 2 +- demos/include/aws_ota_codesigner_certificate.h | 2 +- demos/include/aws_wifi_connect_task.h | 2 +- demos/include/iot_ble_numericComparison.h | 2 +- demos/include/iot_config_common.h | 2 +- demos/include/iot_demo_logging.h | 2 +- demos/include/iot_demo_runner.h | 2 +- demos/mqtt/iot_demo_mqtt.c | 2 +- demos/network_manager/aws_iot_demo_network.c | 2 +- demos/network_manager/aws_iot_network_manager.c | 2 +- demos/network_manager/iot_network_manager_private.h | 2 +- demos/ota/aws_iot_ota_update_demo.c | 2 +- demos/posix/aws_posix_demo.c | 2 +- demos/shadow/aws_iot_demo_shadow.c | 2 +- demos/tcp/aws_tcp_echo_client_single_task.c | 2 +- demos/tcp/aws_tcp_echo_client_single_tasks.h | 2 +- demos/wifi_provisioning/aws_wifi_connect_task.c | 2 +- libraries/3rdparty/mbedtls_utils/mbedtls_error.c | 2 +- libraries/3rdparty/mbedtls_utils/mbedtls_error.h | 4 ++-- .../source/portable/NetworkInterface/Zynq/NetworkInterface.c | 2 +- .../source/portable/NetworkInterface/Zynq/uncached_memory.c | 2 +- .../source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c | 4 ++-- tests/common/aws_test.c | 2 +- tests/common/aws_test_framework.c | 2 +- tests/common/aws_test_runner.c | 2 +- tests/common/iot_test_freertos.c | 2 +- tests/common/iot_tests_network.c | 2 +- tests/include/aws_application_version.h | 2 +- tests/include/aws_clientcredential.h | 2 +- tests/include/aws_clientcredential_keys.h | 2 +- tests/include/aws_test_framework.h | 2 +- tests/include/aws_test_runner.h | 2 +- tests/include/aws_test_tcp.h | 2 +- tests/include/aws_test_utils.h | 2 +- tests/include/aws_unity_config.h | 2 +- tests/include/iot_config_common.h | 2 +- tests/unit_test/linux/config_files/FreeRTOSConfig.h | 2 +- .../unit_test/linux/config_files/aws_secure_sockets_config.h | 2 +- tests/unit_test/linux/config_files/aws_wifi_config.h | 2 +- tests/unit_test/linux/config_files/iot_ble_config.h | 2 +- tests/unit_test/linux/config_files/iot_config.h | 2 +- tests/unit_test/linux/config_files/iot_config_common.h | 2 +- tests/unit_test/linux/config_files/iot_pkcs11_config.h | 2 +- tests/unit_test/linux/config_files/portableDefs.h | 2 +- tests/unit_test/linux/utils/iot_atomic.h | 2 +- tests/unit_test/linux/utils/task_control.c | 2 +- tests/unit_test/linux/utils/task_control.h | 2 +- tests/unit_test/linux/utils/wait_for_event.c | 2 +- tests/unit_test/linux/utils/wait_for_event.h | 2 +- 73 files changed, 76 insertions(+), 76 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2f1ca96932..6bb9a2f63d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for FreeRTOS -## 202006.00 6/11/2020 +## 202007.00 7/14/2020 ### New Features diff --git a/CMakeLists.txt b/CMakeLists.txt index e076bf40e08..82ab038cc3b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}") endif() project(amazon-freertos) -set(PROJECT_VERSION "202006.00") -set(PROJECT_VERSION_MAJOR "202006") +set(PROJECT_VERSION "202007.00") +set(PROJECT_VERSION_MAJOR "202007") set(PROJECT_VERSION_MINOR "00") # Import global configurations. diff --git a/demos/ble/aws_ble_gatt_server_demo.c b/demos/ble/aws_ble_gatt_server_demo.c index 54344494c14..253d60a940c 100644 --- a/demos/ble/aws_ble_gatt_server_demo.c +++ b/demos/ble/aws_ble_gatt_server_demo.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/ble/iot_ble_numericComparison.c b/demos/ble/iot_ble_numericComparison.c index 9cb0d40aded..630f5c9faea 100644 --- a/demos/ble/iot_ble_numericComparison.c +++ b/demos/ble/iot_ble_numericComparison.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/defender/aws_iot_demo_defender.c b/demos/defender/aws_iot_demo_defender.c index a922114134c..c7afcf4f29d 100644 --- a/demos/defender/aws_iot_demo_defender.c +++ b/demos/defender/aws_iot_demo_defender.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/demo_runner/aws_demo.c b/demos/demo_runner/aws_demo.c index 00228fb9ff2..bda8b39b601 100644 --- a/demos/demo_runner/aws_demo.c +++ b/demos/demo_runner/aws_demo.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/demo_runner/aws_demo_network_addr.c b/demos/demo_runner/aws_demo_network_addr.c index bc1f2ab5c60..5f9fbc82d2d 100644 --- a/demos/demo_runner/aws_demo_network_addr.c +++ b/demos/demo_runner/aws_demo_network_addr.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/demo_runner/aws_demo_version.c b/demos/demo_runner/aws_demo_version.c index 5a98f342282..7e4236812d9 100644 --- a/demos/demo_runner/aws_demo_version.c +++ b/demos/demo_runner/aws_demo_version.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/demo_runner/iot_demo_freertos.c b/demos/demo_runner/iot_demo_freertos.c index 2e1d9ebf868..73b4d2ff375 100644 --- a/demos/demo_runner/iot_demo_freertos.c +++ b/demos/demo_runner/iot_demo_freertos.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/demo_runner/iot_demo_runner.c b/demos/demo_runner/iot_demo_runner.c index 54a6a666f4d..5a540e9cb2e 100644 --- a/demos/demo_runner/iot_demo_runner.c +++ b/demos/demo_runner/iot_demo_runner.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/dev_mode_key_provisioning/include/aws_dev_mode_key_provisioning.h b/demos/dev_mode_key_provisioning/include/aws_dev_mode_key_provisioning.h index 14d1d94aa9f..eeeb1b739bf 100644 --- a/demos/dev_mode_key_provisioning/include/aws_dev_mode_key_provisioning.h +++ b/demos/dev_mode_key_provisioning/include/aws_dev_mode_key_provisioning.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/dev_mode_key_provisioning/src/aws_dev_mode_key_provisioning.c b/demos/dev_mode_key_provisioning/src/aws_dev_mode_key_provisioning.c index 05446697223..6858523af6e 100644 --- a/demos/dev_mode_key_provisioning/src/aws_dev_mode_key_provisioning.c +++ b/demos/dev_mode_key_provisioning/src/aws_dev_mode_key_provisioning.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/greengrass_connectivity/aws_greengrass_discovery_demo.c b/demos/greengrass_connectivity/aws_greengrass_discovery_demo.c index 497e11cf60a..3ce3f746a42 100644 --- a/demos/greengrass_connectivity/aws_greengrass_discovery_demo.c +++ b/demos/greengrass_connectivity/aws_greengrass_discovery_demo.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/https/iot_demo_https_common.c b/demos/https/iot_demo_https_common.c index 9fe7d2a3432..ad5986cecd0 100644 --- a/demos/https/iot_demo_https_common.c +++ b/demos/https/iot_demo_https_common.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/https/iot_demo_https_common.h b/demos/https/iot_demo_https_common.h index 4bf82a56db8..2697770f9df 100644 --- a/demos/https/iot_demo_https_common.h +++ b/demos/https/iot_demo_https_common.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/https/iot_demo_https_s3_download_async.c b/demos/https/iot_demo_https_s3_download_async.c index 82d7bc61b1c..6b307182874 100644 --- a/demos/https/iot_demo_https_s3_download_async.c +++ b/demos/https/iot_demo_https_s3_download_async.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/https/iot_demo_https_s3_download_sync.c b/demos/https/iot_demo_https_s3_download_sync.c index 8258f236f72..5d573b2f895 100644 --- a/demos/https/iot_demo_https_s3_download_sync.c +++ b/demos/https/iot_demo_https_s3_download_sync.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/https/iot_demo_https_s3_upload_async.c b/demos/https/iot_demo_https_s3_upload_async.c index 23e48cd681d..639ec510f45 100755 --- a/demos/https/iot_demo_https_s3_upload_async.c +++ b/demos/https/iot_demo_https_s3_upload_async.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/https/iot_demo_https_s3_upload_sync.c b/demos/https/iot_demo_https_s3_upload_sync.c index f5538c414bb..ff5d657ae23 100644 --- a/demos/https/iot_demo_https_s3_upload_sync.c +++ b/demos/https/iot_demo_https_s3_upload_sync.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/aws_application_version.h b/demos/include/aws_application_version.h index 099b3fe225c..abe0e7b38de 100644 --- a/demos/include/aws_application_version.h +++ b/demos/include/aws_application_version.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/aws_ble_gatt_server_demo.h b/demos/include/aws_ble_gatt_server_demo.h index cd763a3ea4c..2cda72e7b47 100644 --- a/demos/include/aws_ble_gatt_server_demo.h +++ b/demos/include/aws_ble_gatt_server_demo.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/aws_clientcredential.h b/demos/include/aws_clientcredential.h index af782fd892f..b71d30514fa 100644 --- a/demos/include/aws_clientcredential.h +++ b/demos/include/aws_clientcredential.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/aws_clientcredential_keys.h b/demos/include/aws_clientcredential_keys.h index 9e4e1ffca23..909855dc0c7 100644 --- a/demos/include/aws_clientcredential_keys.h +++ b/demos/include/aws_clientcredential_keys.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/aws_demo.h b/demos/include/aws_demo.h index f14069e7203..42746f221e6 100644 --- a/demos/include/aws_demo.h +++ b/demos/include/aws_demo.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/aws_iot_demo_network.h b/demos/include/aws_iot_demo_network.h index 1fe3afed201..50e38c1fb66 100644 --- a/demos/include/aws_iot_demo_network.h +++ b/demos/include/aws_iot_demo_network.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/aws_ota_codesigner_certificate.h b/demos/include/aws_ota_codesigner_certificate.h index c7bd640a9c3..905407ca21e 100644 --- a/demos/include/aws_ota_codesigner_certificate.h +++ b/demos/include/aws_ota_codesigner_certificate.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/aws_wifi_connect_task.h b/demos/include/aws_wifi_connect_task.h index 9e20263b0ab..bd43287d5a9 100644 --- a/demos/include/aws_wifi_connect_task.h +++ b/demos/include/aws_wifi_connect_task.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/iot_ble_numericComparison.h b/demos/include/iot_ble_numericComparison.h index adfc90668b4..86fcad9f4a8 100644 --- a/demos/include/iot_ble_numericComparison.h +++ b/demos/include/iot_ble_numericComparison.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/iot_config_common.h b/demos/include/iot_config_common.h index fffa70b8149..eda4f052550 100644 --- a/demos/include/iot_config_common.h +++ b/demos/include/iot_config_common.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/iot_demo_logging.h b/demos/include/iot_demo_logging.h index ec5b2874ba8..54c57d29e1b 100644 --- a/demos/include/iot_demo_logging.h +++ b/demos/include/iot_demo_logging.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/include/iot_demo_runner.h b/demos/include/iot_demo_runner.h index d30fea830cd..4e189acca41 100644 --- a/demos/include/iot_demo_runner.h +++ b/demos/include/iot_demo_runner.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/mqtt/iot_demo_mqtt.c b/demos/mqtt/iot_demo_mqtt.c index b55df5e5961..9eb3aa80d6f 100644 --- a/demos/mqtt/iot_demo_mqtt.c +++ b/demos/mqtt/iot_demo_mqtt.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/network_manager/aws_iot_demo_network.c b/demos/network_manager/aws_iot_demo_network.c index 4d9d40e8fd2..ea093de171b 100644 --- a/demos/network_manager/aws_iot_demo_network.c +++ b/demos/network_manager/aws_iot_demo_network.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/network_manager/aws_iot_network_manager.c b/demos/network_manager/aws_iot_network_manager.c index 220fe1cb033..fec7c9ead38 100644 --- a/demos/network_manager/aws_iot_network_manager.c +++ b/demos/network_manager/aws_iot_network_manager.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/network_manager/iot_network_manager_private.h b/demos/network_manager/iot_network_manager_private.h index 1733e19d05c..2ce09843795 100644 --- a/demos/network_manager/iot_network_manager_private.h +++ b/demos/network_manager/iot_network_manager_private.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/ota/aws_iot_ota_update_demo.c b/demos/ota/aws_iot_ota_update_demo.c index 1735974a718..bcd06bcb647 100644 --- a/demos/ota/aws_iot_ota_update_demo.c +++ b/demos/ota/aws_iot_ota_update_demo.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/posix/aws_posix_demo.c b/demos/posix/aws_posix_demo.c index d49cb506091..aa940b690bd 100644 --- a/demos/posix/aws_posix_demo.c +++ b/demos/posix/aws_posix_demo.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/shadow/aws_iot_demo_shadow.c b/demos/shadow/aws_iot_demo_shadow.c index b2c70dc126b..80e51246156 100644 --- a/demos/shadow/aws_iot_demo_shadow.c +++ b/demos/shadow/aws_iot_demo_shadow.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/tcp/aws_tcp_echo_client_single_task.c b/demos/tcp/aws_tcp_echo_client_single_task.c index 5e6df7fbb8c..bdb3f39cd80 100644 --- a/demos/tcp/aws_tcp_echo_client_single_task.c +++ b/demos/tcp/aws_tcp_echo_client_single_task.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/tcp/aws_tcp_echo_client_single_tasks.h b/demos/tcp/aws_tcp_echo_client_single_tasks.h index 5219ec48777..e85204c4011 100644 --- a/demos/tcp/aws_tcp_echo_client_single_tasks.h +++ b/demos/tcp/aws_tcp_echo_client_single_tasks.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/demos/wifi_provisioning/aws_wifi_connect_task.c b/demos/wifi_provisioning/aws_wifi_connect_task.c index f0fca0fd9ea..45f1f71e797 100644 --- a/demos/wifi_provisioning/aws_wifi_connect_task.c +++ b/demos/wifi_provisioning/aws_wifi_connect_task.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/libraries/3rdparty/mbedtls_utils/mbedtls_error.c b/libraries/3rdparty/mbedtls_utils/mbedtls_error.c index bf00edce7d8..8312fe2dae4 100644 --- a/libraries/3rdparty/mbedtls_utils/mbedtls_error.c +++ b/libraries/3rdparty/mbedtls_utils/mbedtls_error.c @@ -1,5 +1,5 @@ /* - * FreeRTOS Error Code Stringification utilies for mbed TLS v2.16.0 + * FreeRTOS mbed TLS V0.1.0 * 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 diff --git a/libraries/3rdparty/mbedtls_utils/mbedtls_error.h b/libraries/3rdparty/mbedtls_utils/mbedtls_error.h index db838074bda..07bcabb6612 100644 --- a/libraries/3rdparty/mbedtls_utils/mbedtls_error.h +++ b/libraries/3rdparty/mbedtls_utils/mbedtls_error.h @@ -1,5 +1,5 @@ /* - * FreeRTOS Error Code Stringification utilities for mbed TLS v2.16.0 + * FreeRTOS mbed TLS V0.1.0 * 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 @@ -54,5 +54,5 @@ const char * mbedtls_strerror_highlevel( int errnum ); const char * mbedtls_strerror_lowlevel( int errnum ); #ifdef __cplusplus - } +} #endif diff --git a/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/NetworkInterface.c b/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/NetworkInterface.c index 0a3fd484d03..0e9b118390b 100644 --- a/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/NetworkInterface.c +++ b/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/uncached_memory.c b/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/uncached_memory.c index 92b25d206ba..eb859189429 100644 --- a/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/uncached_memory.c +++ b/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/uncached_memory.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c b/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c index b5a04783273..08d93720ada 100644 --- a/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c +++ b/libraries/freertos_plus/standard/freertos_plus_tcp/source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 @@ -427,7 +427,7 @@ int emacps_check_rx( xemacpsif_s * xemacpsif ) pxLastDescriptor = pxBuffer; } - #else /* if ( ipconfigUSE_LINKED_RX_MESSAGES != 0 ) */ + #else /* if ( ipconfigUSE_LINKED_RX_MESSAGES != 0 ) */ { prvPassEthMessages( pxBuffer ); } diff --git a/tests/common/aws_test.c b/tests/common/aws_test.c index 3e600dfc9bb..5b50b6a9487 100644 --- a/tests/common/aws_test.c +++ b/tests/common/aws_test.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/common/aws_test_framework.c b/tests/common/aws_test_framework.c index ac4fb9883ed..65ec6b61bc1 100644 --- a/tests/common/aws_test_framework.c +++ b/tests/common/aws_test_framework.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/common/aws_test_runner.c b/tests/common/aws_test_runner.c index 474e49e10f3..e9134c75b48 100644 --- a/tests/common/aws_test_runner.c +++ b/tests/common/aws_test_runner.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/common/iot_test_freertos.c b/tests/common/iot_test_freertos.c index 61f8209517c..348e1e62ea9 100644 --- a/tests/common/iot_test_freertos.c +++ b/tests/common/iot_test_freertos.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/common/iot_tests_network.c b/tests/common/iot_tests_network.c index 4827cec05c9..62dc68a4f94 100644 --- a/tests/common/iot_tests_network.c +++ b/tests/common/iot_tests_network.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/include/aws_application_version.h b/tests/include/aws_application_version.h index d24b9538627..2781ffafcd7 100644 --- a/tests/include/aws_application_version.h +++ b/tests/include/aws_application_version.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/include/aws_clientcredential.h b/tests/include/aws_clientcredential.h index af782fd892f..b71d30514fa 100644 --- a/tests/include/aws_clientcredential.h +++ b/tests/include/aws_clientcredential.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/include/aws_clientcredential_keys.h b/tests/include/aws_clientcredential_keys.h index 9e4e1ffca23..909855dc0c7 100644 --- a/tests/include/aws_clientcredential_keys.h +++ b/tests/include/aws_clientcredential_keys.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/include/aws_test_framework.h b/tests/include/aws_test_framework.h index c2805750c54..0b0ddeea0d4 100644 --- a/tests/include/aws_test_framework.h +++ b/tests/include/aws_test_framework.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/include/aws_test_runner.h b/tests/include/aws_test_runner.h index 853bab6f03c..f8eb4ce1368 100644 --- a/tests/include/aws_test_runner.h +++ b/tests/include/aws_test_runner.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/include/aws_test_tcp.h b/tests/include/aws_test_tcp.h index 5548fe8a312..45e92bdf972 100644 --- a/tests/include/aws_test_tcp.h +++ b/tests/include/aws_test_tcp.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/include/aws_test_utils.h b/tests/include/aws_test_utils.h index cbc73cd62f5..de12e3b4b27 100644 --- a/tests/include/aws_test_utils.h +++ b/tests/include/aws_test_utils.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/include/aws_unity_config.h b/tests/include/aws_unity_config.h index 1acf30c21d1..4b6ba4f36df 100644 --- a/tests/include/aws_unity_config.h +++ b/tests/include/aws_unity_config.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/include/iot_config_common.h b/tests/include/iot_config_common.h index 958f505eac8..92c2ec40dac 100644 --- a/tests/include/iot_config_common.h +++ b/tests/include/iot_config_common.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/unit_test/linux/config_files/FreeRTOSConfig.h b/tests/unit_test/linux/config_files/FreeRTOSConfig.h index abe45f874b2..a9a4c5b278a 100644 --- a/tests/unit_test/linux/config_files/FreeRTOSConfig.h +++ b/tests/unit_test/linux/config_files/FreeRTOSConfig.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.00 * Copyright (C) 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/tests/unit_test/linux/config_files/aws_secure_sockets_config.h b/tests/unit_test/linux/config_files/aws_secure_sockets_config.h index 54457202eaf..1ecc2d4d1f1 100644 --- a/tests/unit_test/linux/config_files/aws_secure_sockets_config.h +++ b/tests/unit_test/linux/config_files/aws_secure_sockets_config.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.00 * Copyright (C) 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/tests/unit_test/linux/config_files/aws_wifi_config.h b/tests/unit_test/linux/config_files/aws_wifi_config.h index 5a15078db5f..72bc6920ae2 100644 --- a/tests/unit_test/linux/config_files/aws_wifi_config.h +++ b/tests/unit_test/linux/config_files/aws_wifi_config.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.00 * Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/tests/unit_test/linux/config_files/iot_ble_config.h b/tests/unit_test/linux/config_files/iot_ble_config.h index 80970cfd127..d44c1e77a58 100644 --- a/tests/unit_test/linux/config_files/iot_ble_config.h +++ b/tests/unit_test/linux/config_files/iot_ble_config.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.00 * Copyright (C) 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/tests/unit_test/linux/config_files/iot_config.h b/tests/unit_test/linux/config_files/iot_config.h index 41fce56060f..38f151110c0 100644 --- a/tests/unit_test/linux/config_files/iot_config.h +++ b/tests/unit_test/linux/config_files/iot_config.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.00 * Copyright (C) 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/tests/unit_test/linux/config_files/iot_config_common.h b/tests/unit_test/linux/config_files/iot_config_common.h index c6c07db992c..db2de53cbfe 100644 --- a/tests/unit_test/linux/config_files/iot_config_common.h +++ b/tests/unit_test/linux/config_files/iot_config_common.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/unit_test/linux/config_files/iot_pkcs11_config.h b/tests/unit_test/linux/config_files/iot_pkcs11_config.h index 12f81438daa..fae9199ba74 100644 --- a/tests/unit_test/linux/config_files/iot_pkcs11_config.h +++ b/tests/unit_test/linux/config_files/iot_pkcs11_config.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/unit_test/linux/config_files/portableDefs.h b/tests/unit_test/linux/config_files/portableDefs.h index 13f31465831..a4c64f56098 100644 --- a/tests/unit_test/linux/config_files/portableDefs.h +++ b/tests/unit_test/linux/config_files/portableDefs.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/unit_test/linux/utils/iot_atomic.h b/tests/unit_test/linux/utils/iot_atomic.h index a6705a022d7..9bb5d33c854 100644 --- a/tests/unit_test/linux/utils/iot_atomic.h +++ b/tests/unit_test/linux/utils/iot_atomic.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/unit_test/linux/utils/task_control.c b/tests/unit_test/linux/utils/task_control.c index 0fa752b8ff3..907942c07a8 100644 --- a/tests/unit_test/linux/utils/task_control.c +++ b/tests/unit_test/linux/utils/task_control.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/unit_test/linux/utils/task_control.h b/tests/unit_test/linux/utils/task_control.h index 2e122a83291..52639c1b9c9 100644 --- a/tests/unit_test/linux/utils/task_control.h +++ b/tests/unit_test/linux/utils/task_control.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/unit_test/linux/utils/wait_for_event.c b/tests/unit_test/linux/utils/wait_for_event.c index 462d502040b..baae3e9d351 100644 --- a/tests/unit_test/linux/utils/wait_for_event.c +++ b/tests/unit_test/linux/utils/wait_for_event.c @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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 diff --git a/tests/unit_test/linux/utils/wait_for_event.h b/tests/unit_test/linux/utils/wait_for_event.h index 244dbacf4a9..ba2fc138f90 100644 --- a/tests/unit_test/linux/utils/wait_for_event.h +++ b/tests/unit_test/linux/utils/wait_for_event.h @@ -1,5 +1,5 @@ /* - * FreeRTOS V202006.00 + * FreeRTOS V202007.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