Skip to content

Commit 7812695

Browse files
committed
non-conflict merge changes
1 parent c06c43e commit 7812695

File tree

100 files changed

+112
-5182
lines changed

Some content is hidden

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

100 files changed

+112
-5182
lines changed

.github/ISSUE_TEMPLATE/documentation.yml

-44
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.yml

-65
This file was deleted.

.github/ISSUE_TEMPLATE/security.yml

-59
This file was deleted.

.gitmodules

+1-2
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,7 @@
344344
url = https://github.com/adafruit/Adafruit_CircuitPython_Wave.git
345345
[submodule "ports/raspberrypi/lib/Pico-PIO-USB"]
346346
path = ports/raspberrypi/lib/Pico-PIO-USB
347-
url = https://github.com/adafruit/Pico-PIO-USB.git
348-
branch = sdk2_fix
347+
url = https://github.com/sekigon-gonnoc/Pico-PIO-USB.git
349348
[submodule "lib/micropython-lib"]
350349
path = lib/micropython-lib
351350
url = https://github.com/micropython/micropython-lib.git

.readthedocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
version: 2
1010

1111
build:
12-
os: ubuntu-20.04
12+
os: ubuntu-24.04
1313
tools:
1414
python: "3"
1515
jobs:

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ THE SOFTWARE.
2222

2323
--------------------------------------------------------------------------------
2424

25-
#CIRCUITPY-CHANGE:
25+
# CIRCUITPY-CHANGE:
2626

2727
Unless specified otherwise (see below), the above license and copyright applies
2828
to all files derived from MicroPython in this repository.

LICENSE_MicroPython

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013-2022 Damien P. George
3+
Copyright (c) 2013-2024 Damien P. George
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -35,9 +35,7 @@ used during the build process and is not part of the compiled source code.
3535

3636
/ (MIT)
3737
/drivers
38-
/cc3000 (BSD-3-clause)
3938
/cc3100 (BSD-3-clause)
40-
/wiznet5k (BSD-3-clause)
4139
/lib
4240
/asf4 (Apache-2.0)
4341
/axtls (BSD-3-clause)
@@ -50,24 +48,31 @@ used during the build process and is not part of the compiled source code.
5048
/cmsis (BSD-3-clause)
5149
/crypto-algorithms (NONE)
5250
/libhydrogen (ISC)
51+
/libmetal (BSD-3-clause)
5352
/littlefs (BSD-3-clause)
5453
/lwip (BSD-3-clause)
5554
/mynewt-nimble (Apache-2.0)
5655
/nrfx (BSD-3-clause)
5756
/nxp_driver (BSD-3-Clause)
5857
/oofatfs (BSD-1-clause)
58+
/open-amp (BSD-3-clause)
5959
/pico-sdk (BSD-3-clause)
6060
/re15 (BSD-3-clause)
6161
/stm32lib (BSD-3-clause)
6262
/tinytest (BSD-3-clause)
6363
/tinyusb (MIT)
6464
/uzlib (Zlib)
65+
/wiznet5k (MIT)
6566
/logo (uses OFL-1.1)
6667
/ports
6768
/cc3200
6869
/hal (BSD-3-clause)
6970
/simplelink (BSD-3-clause)
7071
/FreeRTOS (GPL-2.0 with FreeRTOS exception)
72+
/esp32
73+
/ppp_set_auth.* (Apache-2.0)
74+
/rp2
75+
/mutex_extra.c (BSD-3-clause)
7176
/stm32
7277
/usbd*.c (MCD-ST Liberty SW License Agreement V2)
7378
/stm32_it.* (MIT + BSD-3-clause)
@@ -77,8 +82,6 @@ used during the build process and is not part of the compiled source code.
7782
/*/stm32*.h (BSD-3-clause)
7883
/usbdev (MCD-ST Liberty SW License Agreement V2)
7984
/usbhost (MCD-ST Liberty SW License Agreement V2)
80-
/teensy
81-
/core (PJRC.COM)
8285
/zephyr
8386
/src (Apache-2.0)
8487
/tools

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Adafruit's CircuitPython Documentation
1+
Adafruit CircuitPython Documentation
22
=========================
33

44
The latest documentation can be found at:

docs/differences/modules_preamble.txt

-33
This file was deleted.

docs/library/collections.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ Classes
5959

6060
.. method:: deque.extend(iterable)
6161

62-
Extend the right side of the deque by appending items from the *iterable* argument.
62+
Extend the right side of the deque by appending items from the ``iterable`` argument.
6363
Raises IndexError if overflow checking is enabled and there is no more room left
64-
for all of the items in *iterable*.
64+
for all of the items in ``iterable``.
6565

6666
In addition to the above, deques support iteration, ``bool``, ``len(d)``, ``reversed(d)``,
6767
membership testing with the ``in`` operator, and subscript references like ``d[0]``.

0 commit comments

Comments
 (0)