Skip to content

Commit cc3d61e

Browse files
committed
fixed merge conflicts
2 parents 2a49567 + 8e00f77 commit cc3d61e

File tree

361 files changed

+14457
-1760
lines changed

Some content is hidden

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

361 files changed

+14457
-1760
lines changed

.github/actions/deps/external/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ runs:
3030
# espressif
3131
- name: Get espressif toolchain
3232
if: inputs.port == 'espressif'
33-
run: sudo apt-get install -y ninja-build
33+
run: |
34+
sudo apt-get update
35+
sudo apt-get install -y ninja-build
3436
shell: bash
3537
- name: Install IDF tools
3638
if: inputs.port == 'espressif'

.github/actions/deps/ports/broadcom/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ runs:
77
run: |
88
wget --no-verbose https://adafruit-circuit-python.s3.amazonaws.com/gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf.tar.xz
99
sudo tar -C /usr --strip-components=1 -xaf gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf.tar.xz
10+
sudo apt-get update
1011
sudo apt-get install -y mtools
1112
shell: bash
1213
- name: Install mkfs.fat

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ jobs:
174174
uses: ./.github/actions/deps/submodules
175175
- name: Install dependencies
176176
run: |
177+
sudo apt-get update
177178
sudo apt-get install -y latexmk librsvg2-bin texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra
178179
pip install -r requirements-doc.txt
179180
- name: Build and Validate Stubs

.github/workflows/pre-commit.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
- name: Set up external
3131
uses: ./.github/actions/deps/external
3232
- name: Install dependencies
33-
run: sudo apt-get install -y gettext uncrustify
33+
run: |
34+
sudo apt-get update
35+
sudo apt-get install -y gettext uncrustify
3436
- name: Run pre-commit
3537
uses: pre-commit/[email protected]
3638
- name: Make patch

.gitmodules

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,17 @@
324324
path = ports/broadcom/peripherals
325325
url = https://github.com/adafruit/broadcom-peripherals.git
326326
branch = main-build
327+
[submodule "ports/silabs/gecko_sdk"]
328+
path = ports/silabs/gecko_sdk
329+
url = https://github.com/SiliconLabs/gecko_sdk.git
330+
branch = v4.2.1
331+
[submodule "ports/silabs/tools/slc_cli_linux"]
332+
path = ports/silabs/tools/slc_cli_linux
333+
url = https://github.com/SiliconLabs/circuitpython_slc_cli_linux
334+
[submodule "ports/raspberrypi/lib/PicoDVI"]
335+
path = ports/raspberrypi/lib/PicoDVI
336+
url = https://github.com/circuitpython/PicoDVI.git
337+
branch = circuitpython
327338
[submodule "frozen/circuitpython-pcf85063a"]
328339
path = frozen/circuitpython-pcf85063a
329340
url = https://github.com/bablokb/circuitpython-pcf85063a

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ accordingly.
123123

124124
## Attribution
125125

126-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
126+
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org),
127127
version 1.4, available at
128128
<https://www.contributor-covenant.org/version/1/4/code-of-conduct.html>,
129129
and the [Rust Code of Conduct](https://www.rust-lang.org/en-US/conduct.html).

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,3 +345,7 @@ fetch-submodules:
345345
remove-submodules:
346346
git submodule deinit -f --all
347347
rm -rf .git/modules/*
348+
349+
.PHONY: fetch-tags
350+
fetch-tags:
351+
git fetch --tags --recurse-submodules=no --shallow-since="2023-02-01" https://github.com/adafruit/circuitpython HEAD

conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ def autoapi_prepare_jinja_env(jinja_env):
216216
"ports/nrf/usb",
217217
"ports/raspberrypi/sdk",
218218
"ports/raspberrypi/lib",
219+
"ports/silabs",
219220
"ports/stm/st_driver",
220221
"ports/stm/packages",
221222
"ports/stm/peripherals",

data/nvm.toml

docs/environment.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ CIRCUITPY_WEB_API_PORT
7474
~~~~~~~~~~~~~~~~~~~~~~
7575
TCP port number used for the web HTTP API. Defaults to 80 when omitted.
7676

77+
CIRCUITPY_WEB_INSTANCE_NAME
78+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
79+
Name the board advertises as for the WEB workflow. Defaults to human readable board name if omitted.
80+
7781
CIRCUITPY_WIFI_PASSWORD
7882
~~~~~~~~~~~~~~~~~~~~~~~
7983
Wi-Fi password used to auto connect to CIRCUITPY_WIFI_SSID.

0 commit comments

Comments
 (0)