Skip to content

Commit a20ab40

Browse files
committed
Merge 3.0.0 final bugfixes and changes to master
1 parent 6c5a152 commit a20ab40

File tree

18 files changed

+93
-26
lines changed

18 files changed

+93
-26
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
[submodule "ports/atmel-samd/peripherals"]
7171
path = ports/atmel-samd/peripherals
7272
url = https://github.com/adafruit/samd-peripherals.git
73+
[submodule "frozen/Adafruit_CircuitPython_Crickit"]
74+
path = frozen/Adafruit_CircuitPython_Crickit
75+
url = https://github.com/adafruit/Adafruit_CircuitPython_Crickit
7376
[submodule "ports/nrf/nrfx"]
7477
path = ports/nrf/nrfx
7578
url = https://github.com/NordicSemiconductor/nrfx.git

docs/drivers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ These provide functionality similar to `analogio`, `digitalio`, `pulseio`, and `
191191

192192
Adafruit SeeSaw <https://circuitpython.readthedocs.io/projects/seesaw/en/latest/>
193193
ADS1x15 Analog-to-Digital Converter <https://circuitpython.readthedocs.io/projects/ads1x15/en/latest/>
194+
Crickit Robotics Boards <<https://circuitpython.readthedocs.io/projects/crickit/en/latest/>
194195
DS2413 OneWire GPIO Expander <https://circuitpython.readthedocs.io/projects/ds2413/en/latest/>
195196
FocalTech Capacitive Touch <https://circuitpython.readthedocs.io/projects/focaltouch/en/latest/>
196197
MCP230xx GPIO Expander <https://circuitpython.readthedocs.io/projects/mcp230xx/en/latest/>
@@ -200,7 +201,6 @@ These provide functionality similar to `analogio`, `digitalio`, `pulseio`, and `
200201
TLC59711 12 x 16-bit PWM Driver <https://circuitpython.readthedocs.io/projects/tlc59711/en/latest/>
201202
MPR121 Capacitive Touch Sensor <https://circuitpython.readthedocs.io/projects/mpr121/en/latest/>
202203

203-
204204
Miscellaneous
205205
----------------
206206

ports/atmel-samd/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ else
119119
ifdef INTERNAL_FLASH_FILESYSTEM
120120
CFLAGS += -finline-limit=55
121121
endif
122+
ifdef CFLAGS_INLINE_LIMIT
123+
CFLAGS += -finline-limit=$(CFLAGS_INLINE_LIMIT)
124+
endif
122125
CFLAGS += -flto
123126
endif
124127

ports/atmel-samd/boards/circuitplayground_express_crickit/mpconfigboard.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ LONGINT_IMPL = NONE
1111
CHIP_VARIANT = SAMD21G18A
1212
CHIP_FAMILY = samd21
1313

14+
CFLAGS_INLINE_LIMIT = 55
15+
1416
# Include these Python libraries in firmware.
1517
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
1618
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_CircuitPlayground
19+
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Crickit
1720
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
1821
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Motor
1922
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel

0 commit comments

Comments
 (0)