Skip to content

Commit daa11cb

Browse files
committed
updates before header conversion
1 parent 8afe185 commit daa11cb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1457
-13
lines changed

LICENSES/lgpl-2.1.txt

Lines changed: 502 additions & 0 deletions
Large diffs are not rendered by default.

devices/ble_hci/common-hal/_bleio/att.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
1-
// Derived from ArduinoBLE.
2-
// Copyright 2020 Dan Halbert for Adafruit Industries
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
3+
// SPDX-FileCopyrightText: Copyright (c) 2020 Dan Halbert for Adafruit Industries
4+
// SPDX-FileCopyrightText: Copyright (c) 2018 Arduino SA. All rights reserved.
5+
//
6+
// SPDX-License-Identifier: LGPL-2.1-or-later
37

48
// Some functions here are unused now, but may be used in the future.
59
// Don't warn or error about this, and depend on the compiler & linker to
610
// eliminate the associated code.
711
#pragma GCC diagnostic ignored "-Wunused"
812
#pragma GCC diagnostic ignored "-Wunused-function"
913

14+
// This file is derived from the ArduinoBLE library. Its header is below.
15+
1016
/*
1117
This file is part of the ArduinoBLE library.
1218
Copyright (c) 2018 Arduino SA. All rights reserved.

devices/ble_hci/common-hal/_bleio/att.h

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
// Derived from ArduinoBLE.
2-
// Copyright 2020 Dan Halbert for Adafruit Industries
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
3+
// SPDX-FileCopyrightText: Copyright (c) 2020 Dan Halbert for Adafruit Industries
4+
// SPDX-FileCopyrightText: Copyright (c) 2018 Arduino SA. All rights reserved.
5+
//
6+
// SPDX-License-Identifier: LGPL-2.1-or-later
7+
8+
// This file is derived from the ArduinoBLE library. Its header is below.
39

410
/*
511
This file is part of the ArduinoBLE library.

devices/ble_hci/common-hal/_bleio/hci.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
3+
// SPDX-FileCopyrightText: Copyright (c) 2020 Dan Halbert for Adafruit Industries
4+
// SPDX-FileCopyrightText: Copyright (c) 2018 Arduino SA. All rights reserved.
5+
//
6+
// SPDX-License-Identifier: LGPL-2.1-or-later
7+
18
// This file is derived from the ArduinoBLE library. Its header is below.
9+
210
/*
311
This file is part of the ArduinoBLE library.
412
Copyright (c) 2018 Arduino SA. All rights reserved.

devices/ble_hci/common-hal/_bleio/hci.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
3+
// SPDX-FileCopyrightText: Copyright (c) 2020 Dan Halbert for Adafruit Industries
4+
// SPDX-FileCopyrightText: Copyright (c) 2018 Arduino SA. All rights reserved.
5+
//
6+
// SPDX-License-Identifier: LGPL-2.1-or-later
7+
8+
// This file is derived from the ArduinoBLE library. Its header is below.
9+
110
/*
211
This file is part of the ArduinoBLE library.
312
Copyright (c) 2018 Arduino SA. All rights reserved.

devices/ble_hci/common-hal/_bleio/hci_include/addr.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// CircuitPython: Adapted from Zephyer include files.
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
// Adapted from Zephyr include file.
3+
24
/** @file
35
* @brief Bluetooth device address definitions and utilities.
46
*/

devices/ble_hci/common-hal/_bleio/hci_include/att.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// CircuitPython: Adapted from Zephyr include file.
1+
// This file is part of the CircuitPython project: https://circuitpython.org\
2+
// Adapted from Zephyr include file.
3+
24
/** @file
35
* @brief Attribute Protocol handling.
46
*/

devices/ble_hci/common-hal/_bleio/hci_include/att_internal.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// CircuitPython: Adapted from Zephyr include file.
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
// Adapted from Zephyr include file.
23

34
/* att_internal.h - Attribute protocol handling */
45

devices/ble_hci/common-hal/_bleio/hci_include/hci.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// CircuitPython: Adapted from Zephyr include file.
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
// Adapted from Zephyr include file.
23

34
/* hci.h - Bluetooth Host Control Interface definitions */
45

devices/ble_hci/common-hal/_bleio/hci_include/l2cap_internal.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// CircuitPython: Adapted from Zephyr include file.
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
// Adapted from Zephyr include file.
23

34
/** @file
45
* @brief Internal APIs for Bluetooth L2CAP handling.

0 commit comments

Comments
 (0)