commit
6908eed7ef
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -70,3 +70,6 @@
|
|||||||
[submodule "ports/atmel-samd/peripherals"]
|
[submodule "ports/atmel-samd/peripherals"]
|
||||||
path = ports/atmel-samd/peripherals
|
path = ports/atmel-samd/peripherals
|
||||||
url = https://github.com/adafruit/samd-peripherals.git
|
url = https://github.com/adafruit/samd-peripherals.git
|
||||||
|
[submodule "frozen/Adafruit_CircuitPython_Crickit"]
|
||||||
|
path = frozen/Adafruit_CircuitPython_Crickit
|
||||||
|
url = https://github.com/adafruit/Adafruit_CircuitPython_Crickit
|
||||||
|
@ -191,6 +191,7 @@ These provide functionality similar to `analogio`, `digitalio`, `pulseio`, and `
|
|||||||
|
|
||||||
Adafruit SeeSaw <https://circuitpython.readthedocs.io/projects/seesaw/en/latest/>
|
Adafruit SeeSaw <https://circuitpython.readthedocs.io/projects/seesaw/en/latest/>
|
||||||
ADS1x15 Analog-to-Digital Converter <https://circuitpython.readthedocs.io/projects/ads1x15/en/latest/>
|
ADS1x15 Analog-to-Digital Converter <https://circuitpython.readthedocs.io/projects/ads1x15/en/latest/>
|
||||||
|
Crickit Robotics Boards <<https://circuitpython.readthedocs.io/projects/crickit/en/latest/>
|
||||||
DS2413 OneWire GPIO Expander <https://circuitpython.readthedocs.io/projects/ds2413/en/latest/>
|
DS2413 OneWire GPIO Expander <https://circuitpython.readthedocs.io/projects/ds2413/en/latest/>
|
||||||
FocalTech Capacitive Touch <https://circuitpython.readthedocs.io/projects/focaltouch/en/latest/>
|
FocalTech Capacitive Touch <https://circuitpython.readthedocs.io/projects/focaltouch/en/latest/>
|
||||||
MCP230xx GPIO Expander <https://circuitpython.readthedocs.io/projects/mcp230xx/en/latest/>
|
MCP230xx GPIO Expander <https://circuitpython.readthedocs.io/projects/mcp230xx/en/latest/>
|
||||||
@ -200,7 +201,6 @@ These provide functionality similar to `analogio`, `digitalio`, `pulseio`, and `
|
|||||||
TLC59711 12 x 16-bit PWM Driver <https://circuitpython.readthedocs.io/projects/tlc59711/en/latest/>
|
TLC59711 12 x 16-bit PWM Driver <https://circuitpython.readthedocs.io/projects/tlc59711/en/latest/>
|
||||||
MPR121 Capacitive Touch Sensor <https://circuitpython.readthedocs.io/projects/mpr121/en/latest/>
|
MPR121 Capacitive Touch Sensor <https://circuitpython.readthedocs.io/projects/mpr121/en/latest/>
|
||||||
|
|
||||||
|
|
||||||
Miscellaneous
|
Miscellaneous
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
1
frozen/Adafruit_CircuitPython_Crickit
Submodule
1
frozen/Adafruit_CircuitPython_Crickit
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit abae54a38035dcf0b9a5fd688940880dbc68d61d
|
@ -1 +1 @@
|
|||||||
Subproject commit 6da5d14b98ac3d929662731f73ce03c0c958b520
|
Subproject commit 683004104d4612f230de12946a46467abbc507e8
|
@ -1 +1 @@
|
|||||||
Subproject commit 498f59bf926477b3a8fb8eb157ca05eb12c3e298
|
Subproject commit bf808037b3fb918353f514ef847d47a2d53a9546
|
@ -117,6 +117,9 @@ else
|
|||||||
ifdef INTERNAL_FLASH_FILESYSTEM
|
ifdef INTERNAL_FLASH_FILESYSTEM
|
||||||
CFLAGS += -finline-limit=55
|
CFLAGS += -finline-limit=55
|
||||||
endif
|
endif
|
||||||
|
ifdef CFLAGS_INLINE_LIMIT
|
||||||
|
CFLAGS += -finline-limit=$(CFLAGS_INLINE_LIMIT)
|
||||||
|
endif
|
||||||
CFLAGS += -flto
|
CFLAGS += -flto
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -11,9 +11,12 @@ LONGINT_IMPL = NONE
|
|||||||
CHIP_VARIANT = SAMD21G18A
|
CHIP_VARIANT = SAMD21G18A
|
||||||
CHIP_FAMILY = samd21
|
CHIP_FAMILY = samd21
|
||||||
|
|
||||||
|
CFLAGS_INLINE_LIMIT = 65
|
||||||
|
|
||||||
# Include these Python libraries in firmware.
|
# Include these Python libraries in firmware.
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_CircuitPlayground
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_CircuitPlayground
|
||||||
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Crickit
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Motor
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Motor
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
||||||
|
@ -10,8 +10,11 @@ LONGINT_IMPL = MPZ
|
|||||||
CHIP_VARIANT = SAMD21G18A
|
CHIP_VARIANT = SAMD21G18A
|
||||||
CHIP_FAMILY = samd21
|
CHIP_FAMILY = samd21
|
||||||
|
|
||||||
|
CFLAGS_INLINE_LIMIT = 65
|
||||||
|
|
||||||
# Include these Python libraries in firmware.
|
# Include these Python libraries in firmware.
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
|
||||||
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Crickit
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Motor
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Motor
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_seesaw
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_seesaw
|
||||||
|
Loading…
Reference in New Issue
Block a user