Compare commits

...

10 commits

Author SHA1 Message Date
kar-rahul-aws 0264280230 [AUTO][RELEASE]: Update SBOM 2023-08-17 17:14:08 +00:00
kar-rahul-aws ab6744c08c [AUTO][RELEASE]: Update version number in manifest.yml 2023-08-17 17:14:06 +00:00
kar-rahul-aws c5edc980c5 [AUTO][RELEASE]: Bump file header version to "10.6.1" 2023-08-17 17:14:06 +00:00
kar-rahul-aws 76a4a16800 [AUTO][RELEASE]: Bump task.h version macros to "10.6.1" 2023-08-17 17:14:04 +00:00
kar-rahul-aws 5678e7a27c
Update History.txt for V10.6.1 (#759)
Update History.txt for V10.6.1

Signed-off-by: kar-rahul-aws <karahulx@amazon.com>
2023-08-17 22:42:41 +05:30
kar-rahul-aws ace6b39fa0
Add runtime parameter checks (#758)
* Add runtime parameter checks

This commit adds runtime checks for function parameters
to mpu_wrappers_v2 file. The same checks are performed
in the API implementation using asserts.

Signed-off-by: kar-rahul-aws <karahulx@amazon.com>
2023-08-17 18:53:42 +05:30
kar-rahul-aws 0d871946ab
Update version number in manifest.yml (#756)
Add automation to update version number in manifest.yml. Also,
bring required commits from main.
2023-08-17 17:20:53 +05:30
kar-rahul-aws fe005419f0 Update SBOM 2023-07-13 11:45:34 +00:00
kar-rahul-aws aec827831a [AUTO][RELEASE]: Bump file header version to "10.6.0" 2023-07-13 11:45:32 +00:00
kar-rahul-aws 81a2a656d1 [AUTO][RELEASE]: Bump task.h version macros to "10.6.0" 2023-07-13 11:45:30 +00:00
664 changed files with 2792 additions and 849 deletions

1
.github/lexicon.txt vendored
View file

@ -2469,6 +2469,7 @@ uxpriority
uxprioritytouse
uxqueue
uxqueuegetqueueitemsize
uxqueuegetqueuelength
uxqueuelength
uxqueuemessageswaiting
uxqueuespacesavailable

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python3
#/*
# * FreeRTOS Kernel <DEVELOPMENT BRANCH>
# * FreeRTOS Kernel V10.6.1
# * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# *
# * SPDX-License-Identifier: MIT
@ -99,7 +99,7 @@ KERNEL_THIRD_PARTY_PATTERNS = [
KERNEL_HEADER = [
'/*\n',
' * FreeRTOS Kernel <DEVELOPMENT BRANCH>\n',
' * FreeRTOS Kernel V10.6.1\n',
' * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n',
' *\n',
' * SPDX-License-Identifier: MIT\n',

32
.github/scripts/manifest_updater.py vendored Executable file
View file

@ -0,0 +1,32 @@
#!/usr/bin/env python3
import os
import argparse
THIS_FILE_PATH = os.path.dirname(os.path.abspath(__file__))
MANIFEST_FILE = os.path.join(THIS_FILE_PATH, '..', '..', 'manifest.yml')
def update_manifest_file(new_version_number):
updated_lines = []
with open(MANIFEST_FILE, 'r') as f:
for line in f:
line = line.strip()
if line.startswith('version'):
updated_lines.append(f'version: "v{new_version_number}"\n')
else:
updated_lines.append(f'{line}\n')
with open(MANIFEST_FILE, 'w') as f:
f.writelines(updated_lines)
def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument('-v', '--version', required=True, help='New version number.')
args = parser.parse_args()
return args
def main():
args = parse_args()
update_manifest_file(args.version)
if __name__ == '__main__':
main()

View file

@ -63,6 +63,19 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name : Update version number in manifest.yml
working-directory: ./local_kernel
run: |
./.github/scripts/manifest_updater.py -v ${{ github.event.inputs.version_number }}
exit $?
- name : Commit version number change in manifest.yml
working-directory: ./local_kernel
run: |
git add .
git commit -m '[AUTO][RELEASE]: Update version number in manifest.yml'
git push -u origin ${{ github.event.inputs.version_number }}
- name: Generate SBOM
uses: FreeRTOS/CI-CD-Github-Actions/sbom-generator@main
with:
@ -73,7 +86,7 @@ jobs:
working-directory: ./local_kernel
run: |
git add .
git commit -m 'Update SBOM'
git commit -m '[AUTO][RELEASE]: Update SBOM'
git push -u origin ${{ github.event.inputs.version_number }}
echo "COMMIT_SHA_2=$(git rev-parse HEAD)" >> $GITHUB_ENV
@ -81,7 +94,7 @@ jobs:
run: |
# Install deps and run
pip install -r ./tools/.github/scripts/release-requirements.txt
./tools/.github/scripts/release.py FreeRTOS --kernel-repo-path=local_kernel --kernel-commit=${{ env.COMMIT_SHA_2 }} --new-kernel-version=${{ github.event.inputs.version_number }} --new-kernel-main-br-version=${{ github.event.inputs.main_br_version }}
./tools/.github/scripts/release.py ${{ github.repository_owner }} --kernel-repo-path=local_kernel --kernel-commit=${{ env.COMMIT_SHA_2 }} --new-kernel-version=${{ github.event.inputs.version_number }} --new-kernel-main-br-version=${{ github.event.inputs.main_br_version }}
exit $?
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View file

@ -123,9 +123,22 @@ jobs:
with:
ref: main
repository: FreeRTOS/FreeRTOS
submodules: 'recursive'
fetch-depth: 1
- name: Fetch Community-Supported-Demos Submodule
shell: bash
run: |
# Fetch Community-Supported-Demos Submodule
echo "::group::Fetch Community-Supported-Demos Submodule"
git submodule update --checkout --init --depth 1 FreeRTOS/Demo/ThirdParty/Community-Supported-Demos
echo "::engdroup::"
if [ "$?" = "0" ]; then
echo -e "\033[32;3mCloned the Community-Supported-Demos\033[0m"
else
echo -e "\033[32;31mCommunity-Supported-Demos Clone Failed...\033[0m"
exit 1
fi
# Checkout user pull request changes
- name: Checkout Pull Request
uses: actions/checkout@v2
@ -169,7 +182,7 @@ jobs:
- name: Build CORTEX_M0+_RP2040 Demos
shell: bash
working-directory: FreeRTOS/Demo/ThirdParty/Community-Supported/CORTEX_M0+_RP2040
working-directory: FreeRTOS/Demo/ThirdParty/Community-Supported-Demos/CORTEX_M0+_RP2040
run: |
git clone https://github.com/raspberrypi/pico-sdk.git
cmake -B build -DPICO_SDK_PATH=pico-sdk -GNinja

View file

@ -1,5 +1,18 @@
Documentation and download available at https://www.FreeRTOS.org/
Changes between FreeRTOS V10.6.0 and FreeRTOS 10.6.1 released August 17, 2023
+ Add runtime parameter checks to functions in mpu_wrappers_v2.c file.
The same checks are already performed in API implementations using
asserts.
We thank the following people for their inputs in these changes:
- Lan Luo, Zixia Liu of School of Computer Science and Technology,
Anhui University of Technology, China.
- Xinwen Fu of Department of Computer Science, University of
Massachusetts Lowell, USA.
- Xinhui Shao, Yumeng Wei, Huaiyu Yan, Zhen Ling of School of
Computer Science and Engineering, Southeast University, China.
Changes between FreeRTOS V10.5.1 and FreeRTOS 10.6.0 released July 13, 2023
+ Add a new MPU wrapper that places additional restrictions on unprivileged

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT
@ -46,26 +46,6 @@
* correct privileged Vs unprivileged linkage and placement. */
#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021 See comment above. */
/* The following bit fields convey control information in a task's event list
* item value. It is important they don't clash with the
* taskEVENT_LIST_ITEM_VALUE_IN_USE definition. */
#if ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_16_BITS )
#define eventCLEAR_EVENTS_ON_EXIT_BIT 0x0100U
#define eventUNBLOCKED_DUE_TO_BIT_SET 0x0200U
#define eventWAIT_FOR_ALL_BITS 0x0400U
#define eventEVENT_BITS_CONTROL_BYTES 0xff00U
#elif ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_32_BITS )
#define eventCLEAR_EVENTS_ON_EXIT_BIT 0x01000000UL
#define eventUNBLOCKED_DUE_TO_BIT_SET 0x02000000UL
#define eventWAIT_FOR_ALL_BITS 0x04000000UL
#define eventEVENT_BITS_CONTROL_BYTES 0xff000000UL
#elif ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS )
#define eventCLEAR_EVENTS_ON_EXIT_BIT 0x0100000000000000ULL
#define eventUNBLOCKED_DUE_TO_BIT_SET 0x0200000000000000ULL
#define eventWAIT_FOR_ALL_BITS 0x0400000000000000ULL
#define eventEVENT_BITS_CONTROL_BYTES 0xff00000000000000ULL
#endif /* if ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_16_BITS ) */
typedef struct EventGroupDef_t
{
EventBits_t uxEventBits;

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT
@ -36,6 +36,26 @@
/* FreeRTOS includes. */
#include "timers.h"
/* The following bit fields convey control information in a task's event list
* item value. It is important they don't clash with the
* taskEVENT_LIST_ITEM_VALUE_IN_USE definition. */
#if ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_16_BITS )
#define eventCLEAR_EVENTS_ON_EXIT_BIT 0x0100U
#define eventUNBLOCKED_DUE_TO_BIT_SET 0x0200U
#define eventWAIT_FOR_ALL_BITS 0x0400U
#define eventEVENT_BITS_CONTROL_BYTES 0xff00U
#elif ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_32_BITS )
#define eventCLEAR_EVENTS_ON_EXIT_BIT 0x01000000UL
#define eventUNBLOCKED_DUE_TO_BIT_SET 0x02000000UL
#define eventWAIT_FOR_ALL_BITS 0x04000000UL
#define eventEVENT_BITS_CONTROL_BYTES 0xff000000UL
#elif ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS )
#define eventCLEAR_EVENTS_ON_EXIT_BIT 0x0100000000000000ULL
#define eventUNBLOCKED_DUE_TO_BIT_SET 0x0200000000000000ULL
#define eventWAIT_FOR_ALL_BITS 0x0400000000000000ULL
#define eventEVENT_BITS_CONTROL_BYTES 0xff00000000000000ULL
#endif /* if ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_16_BITS ) */
/* *INDENT-OFF* */
#ifdef __cplusplus
extern "C" {

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT
@ -1753,6 +1753,7 @@ void vQueueSetQueueNumber( QueueHandle_t xQueue,
UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
uint8_t ucQueueGetQueueType( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
UBaseType_t uxQueueGetQueueItemSize( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
UBaseType_t uxQueueGetQueueLength( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
/* *INDENT-OFF* */
#ifdef __cplusplus

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT
@ -53,10 +53,10 @@
* The tskKERNEL_VERSION_MAJOR, tskKERNEL_VERSION_MINOR, tskKERNEL_VERSION_BUILD
* values will reflect the last released version number.
*/
#define tskKERNEL_VERSION_NUMBER "V10.4.4+"
#define tskKERNEL_VERSION_NUMBER "V10.6.1"
#define tskKERNEL_VERSION_MAJOR 10
#define tskKERNEL_VERSION_MINOR 4
#define tskKERNEL_VERSION_BUILD 4
#define tskKERNEL_VERSION_MINOR 6
#define tskKERNEL_VERSION_BUILD 1
/* MPU region parameters passed in ulParameters
* of MemoryRegion_t struct. */

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

2
list.c
View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,4 +1,4 @@
name : "FreeRTOS-Kernel"
version: "v10.5.1"
version: "v10.6.1"
description: "FreeRTOS Kernel."
license: "MIT"

View file

@ -1,5 +1,5 @@
#/*
# * FreeRTOS Kernel <DEVELOPMENT BRANCH>
# * FreeRTOS Kernel V10.6.1
# * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# *
# * SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
;/*
; * FreeRTOS Kernel <DEVELOPMENT BRANCH>
; * FreeRTOS Kernel V10.6.1
; * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
; *
; * SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
;/*
; * FreeRTOS Kernel <DEVELOPMENT BRANCH>
; * FreeRTOS Kernel V10.6.1
; * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
; *
; * SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
;/*
; * FreeRTOS Kernel <DEVELOPMENT BRANCH>
; * FreeRTOS Kernel V10.6.1
; * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
; *
; * SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
;/*
; * FreeRTOS Kernel <DEVELOPMENT BRANCH>
; * FreeRTOS Kernel V10.6.1
; * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
; *
; * SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
;/*
; * FreeRTOS Kernel <DEVELOPMENT BRANCH>
; * FreeRTOS Kernel V10.6.1
; * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
; *
; * SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

View file

@ -1,5 +1,5 @@
/*
* FreeRTOS Kernel <DEVELOPMENT BRANCH>
* FreeRTOS Kernel V10.6.1
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT

Some files were not shown because too many files have changed in this diff Show more