Skip to content

Commit 4ff76ae

Browse files
committed
Merge remote-tracking branch 'origin/main' into main
2 parents 59bebfd + 063e394 commit 4ff76ae

File tree

30 files changed

+721
-23
lines changed

30 files changed

+721
-23
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,6 @@
188188
[submodule "frozen/Adafruit_CircuitPython_SimpleIO"]
189189
path = frozen/Adafruit_CircuitPython_SimpleIO
190190
url = https://github.com/adafruit/adafruit_circuitpython_simpleio
191+
[submodule "lib/quirc"]
192+
path = lib/quirc
193+
url = https://github.com/adafruit/quirc.git

docs/common_hal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ These instructions also apply to `analogio`, `busio`, `pulseio` and `touchio`. M
77
Common HAL related files are found in these locations:
88

99
* `shared-bindings` Shared home for the Python <-> C bindings which includes inline RST documentation for the created interfaces. The common hal functions are defined in the .h files of the corresponding C files.
10-
* `shared-modules` Shared home for C code built on the Common HAL and used by all ports. This code only uses `common_hal` methods defined in `shared-bindings`.
10+
* `shared-module` Shared home for C code built on the Common HAL and used by all ports. This code only uses `common_hal` methods defined in `shared-bindings`.
1111
* `<port>/common-hal` Port-specific implementation of the Common HAL.
1212

1313
Each folder has the substructure of <python module name>/<class name> and they should match 1:1. `__init__.c` is used for module globals that are not classes (similar to `__init__.py`).

lib/quirc

Submodule quirc added at 8c6ffa2

locale/circuitpython.pot

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2063,7 +2063,6 @@ msgid "Size not supported"
20632063
msgstr ""
20642064

20652065
#: ports/raspberrypi/common-hal/alarm/SleepMemory.c
2066-
#: ports/stm/common-hal/alarm/SleepMemory.c
20672066
msgid "Sleep Memory not available"
20682067
msgstr ""
20692068

ports/atmel-samd/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ SRC_SHARED_MODULE_EXPANDED = $(addprefix shared-bindings/, $(SRC_SHARED_MODULE))
340340
$(addprefix shared-module/, $(SRC_SHARED_MODULE_INTERNAL))
341341

342342
# There may be duplicates between SRC_COMMON_HAL_EXPANDED and SRC_SHARED_MODULE_EXPANDED,
343-
# because a few modules have files both in common-hal/ and shared-modules/.
343+
# because a few modules have files both in common-hal/ and shared-module/.
344344
# Doing a $(sort ...) removes duplicates as part of sorting.
345345
SRC_COMMON_HAL_SHARED_MODULE_EXPANDED = $(sort $(SRC_COMMON_HAL_EXPANDED) $(SRC_SHARED_MODULE_EXPANDED))
346346

ports/esp32s2/boards/espressif_kaluga_1.3/mpconfigboard.mk

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,4 @@ CIRCUITPY_ESP_FLASH_MODE=dio
1414
CIRCUITPY_ESP_FLASH_FREQ=80m
1515
CIRCUITPY_ESP_FLASH_SIZE=4MB
1616

17-
# We only have enough endpoints available in hardware to
18-
# enable ONE of these at a time.
19-
CIRCUITPY_USB_MIDI = 1
20-
CIRCUITPY_USB_HID = 0
21-
CIRCUITPY_USB_VENDOR = 0
22-
2317
CIRCUITPY_MODULE=wrover

ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.mk

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,4 @@ CIRCUITPY_ESP_FLASH_MODE=dio
1414
CIRCUITPY_ESP_FLASH_FREQ=80m
1515
CIRCUITPY_ESP_FLASH_SIZE=4MB
1616

17-
# We only have enough endpoints available in hardware to
18-
# enable ONE of these at a time.
19-
CIRCUITPY_USB_MIDI = 1
20-
CIRCUITPY_USB_HID = 0
21-
CIRCUITPY_USB_VENDOR = 0
22-
2317
CIRCUITPY_MODULE=wrover

ports/esp32s2/mpconfigport.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ CIRCUITPY_ROTARYIO = 1
3131
CIRCUITPY_NVM = 1
3232
CIRCUITPY_PS2IO ?= 1
3333
CIRCUITPY_TOUCHIO_USE_NATIVE ?= 1
34-
CIRCUITPY_WIFI = 1
34+
CIRCUITPY_WIFI ?= 1
3535
CIRCUITPY_WATCHDOG ?= 1
3636

3737
CIRCUITPY_ESPIDF = 1

ports/nrf/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ SRC_SHARED_MODULE_EXPANDED = $(addprefix shared-bindings/, $(SRC_SHARED_MODULE))
191191
$(addprefix shared-module/, $(SRC_SHARED_MODULE_INTERNAL))
192192

193193
# There may be duplicates between SRC_COMMON_HAL_EXPANDED and SRC_SHARED_MODULE_EXPANDED,
194-
# because a few modules have files both in common-hal/ and shared-modules/.
194+
# because a few modules have files both in common-hal/ and shared-module/.
195195
# Doing a $(sort ...) removes duplicates as part of sorting.
196196
SRC_COMMON_HAL_SHARED_MODULE_EXPANDED = $(sort $(SRC_COMMON_HAL_EXPANDED) $(SRC_SHARED_MODULE_EXPANDED))
197197

ports/raspberrypi/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ SRC_SHARED_MODULE_EXPANDED = $(addprefix shared-bindings/, $(SRC_SHARED_MODULE))
213213
$(addprefix shared-module/, $(SRC_SHARED_MODULE_INTERNAL))
214214

215215
# There may be duplicates between SRC_COMMON_HAL_EXPANDED and SRC_SHARED_MODULE_EXPANDED,
216-
# because a few modules have files both in common-hal/ and shared-modules/.
216+
# because a few modules have files both in common-hal/ and shared-module/.
217217
# Doing a $(sort ...) removes duplicates as part of sorting.
218218
SRC_COMMON_HAL_SHARED_MODULE_EXPANDED = $(sort $(SRC_COMMON_HAL_EXPANDED) $(SRC_SHARED_MODULE_EXPANDED))
219219

0 commit comments

Comments
 (0)