Skip to content

Commit 150f03c

Browse files
committed
docs: modify copyright headers for files taken and modified from
third-party sources
1 parent 23a9466 commit 150f03c

File tree

9 files changed

+99
-0
lines changed

9 files changed

+99
-0
lines changed

examples/common/blemesh_platform/platform/ESP32_custom/BUILD.gn

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# SPDX-FileCopyrightText: 2021 Project CHIP Authors
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
#
5+
# SPDX-FileContributor: 2024 Espressif Systems (Shanghai) PTE LTD
6+
#
7+
# Modified the original code to support blemesh platform on ESP32 SoCs.
8+
#
9+
# For original code and license information, please refer to
10+
# https://github.com/project-chip/connectedhomeip
11+
112
# Copyright (c) 2021 Project CHIP Authors
213
#
314
# Licensed under the Apache License, Version 2.0 (the "License");

examples/common/blemesh_platform/platform/ESP32_custom/nimble/BLEManagerImpl.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// SPDX-FileCopyrightText: 2020-2021 Project CHIP Authors
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
//
5+
// SPDX-FileContributor: 2024 Espressif Systems (Shanghai) PTE LTD
6+
//
7+
// Modified the original code to support blemesh platform on ESP32 SoCs.
8+
//
9+
// For original code and license information, please refer to
10+
// https://github.com/project-chip/connectedhomeip
11+
112
/*
213
*
314
* Copyright (c) 2020-2021 Project CHIP Authors

examples/common/external_platform/BUILD.gn

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# SPDX-FileCopyrightText: 2020-2021 Project CHIP Authors
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
#
5+
# SPDX-FileContributor: 2022-2024 Espressif Systems (Shanghai) PTE LTD
6+
#
7+
# Modified the original code to support external platform on ESP32 SoCs.
8+
#
9+
# For original code and license information, please refer to
10+
# https://github.com/project-chip/connectedhomeip
11+
112
# Copyright (c) 2021 Project CHIP Authors
213
#
314
# Licensed under the Apache License, Version 2.0 (the "License");

examples/common/secondary_ble_adv/platform/ESP32_custom/BLEManagerImpl.h

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// SPDX-FileCopyrightText: 2020-2021 Project CHIP Authors
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
//
5+
// SPDX-FileContributor: 2024 Espressif Systems (Shanghai) PTE LTD
6+
//
7+
// Modified the original code to add a secondary BLE advertisement.
8+
//
9+
// For original code and license information, please refer to
10+
// https://github.com/project-chip/connectedhomeip
11+
112
/*
213
*
314
* Copyright (c) 2020-2021 Project CHIP Authors

examples/common/secondary_ble_adv/platform/ESP32_custom/BUILD.gn

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# SPDX-FileCopyrightText: 2023 Project CHIP Authors
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
#
5+
# SPDX-FileContributor: 2024 Espressif Systems (Shanghai) PTE LTD
6+
#
7+
# Modified the original code to add a secondary BLE advertisement.
8+
#
9+
# For original code and license information, please refer to
10+
# https://github.com/project-chip/connectedhomeip
11+
112
# Copyright (c) 2023 Project CHIP Authors
213
#
314
# Licensed under the Apache License, Version 2.0 (the "License");

examples/common/secondary_ble_adv/platform/ESP32_custom/ESP32Utils.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// SPDX-FileCopyrightText: 2020 Project CHIP Authors
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
//
5+
// SPDX-FileContributor: 2024 Espressif Systems (Shanghai) PTE LTD
6+
//
7+
// Modified the original code to add a secondary BLE advertisement.
8+
//
9+
// For original code and license information, please refer to
10+
// https://github.com/project-chip/connectedhomeip
11+
112
/*
213
*
314
* Copyright (c) 2020 Project CHIP Authors

examples/common/secondary_ble_adv/platform/ESP32_custom/PlatformManagerImpl.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// SPDX-FileCopyrightText: 2020 Project CHIP Authors
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
//
5+
// SPDX-FileContributor: 2024 Espressif Systems (Shanghai) PTE LTD
6+
//
7+
// Modified the original code to add a secondary BLE advertisement.
8+
//
9+
// For original code and license information, please refer to
10+
// https://github.com/project-chip/connectedhomeip
11+
112
/*
213
*
314
* Copyright (c) 2020 Project CHIP Authors

examples/common/secondary_ble_adv/platform/ESP32_custom/PlatformManagerImpl.h

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// SPDX-FileCopyrightText: 2020 Project CHIP Authors
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
//
5+
// SPDX-FileContributor: 2024 Espressif Systems (Shanghai) PTE LTD
6+
//
7+
// Modified the original code to add a secondary BLE advertisement.
8+
//
9+
// For original code and license information, please refer to
10+
// https://github.com/project-chip/connectedhomeip
11+
112
/*
213
*
314
* Copyright (c) 2020 Project CHIP Authors

examples/common/secondary_ble_adv/platform/ESP32_custom/nimble/BLEManagerImpl.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// SPDX-FileCopyrightText: 2020-2021 Project CHIP Authors
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
//
5+
// SPDX-FileContributor: 2024 Espressif Systems (Shanghai) PTE LTD
6+
//
7+
// Modified the original code to add a secondary BLE advertisement.
8+
//
9+
// For original code and license information, please refer to
10+
// https://github.com/project-chip/connectedhomeip
11+
112
/*
213
*
314
* Copyright (c) 2020-2021 Project CHIP Authors

0 commit comments

Comments
 (0)