Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -430,3 +430,30 @@
[submodule "frozen/Adafruit_CircuitPython_TAS2505"]
path = frozen/Adafruit_CircuitPython_TAS2505
url = https://github.com/adafruit/Adafruit_CircuitPython_TAS2505.git
[submodule "frozen/Adafruit_CircuitPython_IL0373"]
path = frozen/Adafruit_CircuitPython_IL0373
url = https://github.com/adafruit/Adafruit_CircuitPython_IL0373.git
[submodule "frozen/Adafruit_CircuitPython_JD79667"]
path = frozen/Adafruit_CircuitPython_JD79667
url = https://github.com/adafruit/Adafruit_CircuitPython_JD79667.git
[submodule "frozen/Adafruit_CircuitPython_MAX1704x"]
path = frozen/Adafruit_CircuitPython_MAX1704x
url = https://github.com/adafruit/Adafruit_CircuitPython_MAX1704x.git
[submodule "frozen/Adafruit_CircuitPython_NTP"]
path = frozen/Adafruit_CircuitPython_NTP
url = https://github.com/adafruit/Adafruit_CircuitPython_NTP.git
[submodule "frozen/Adafruit_CircuitPython_SCD4X"]
path = frozen/Adafruit_CircuitPython_SCD4X
url = https://github.com/adafruit/Adafruit_CircuitPython_SCD4X.git
[submodule "frozen/Adafruit_CircuitPython_SCD30"]
path = frozen/Adafruit_CircuitPython_SCD30
url = https://github.com/adafruit/Adafruit_CircuitPython_SCD30.git
[submodule "frozen/Adafruit_CircuitPython_SEN6x"]
path = frozen/Adafruit_CircuitPython_SEN6x
url = https://github.com/adafruit/Adafruit_CircuitPython_SEN6x.git
[submodule "frozen/Adafruit_CircuitPython_PCF8523"]
path = frozen/Adafruit_CircuitPython_PCF8523
url = https://github.com/adafruit/Adafruit_CircuitPython_PCF8523.git
[submodule "frozen/Adafruit_CircuitPython_DS1307"]
path = frozen/Adafruit_CircuitPython_DS1307
url = https://github.com/adafruit/Adafruit_CircuitPython_DS1307.git
1 change: 1 addition & 0 deletions frozen/Adafruit_CircuitPython_DS1307
1 change: 1 addition & 0 deletions frozen/Adafruit_CircuitPython_IL0373
1 change: 1 addition & 0 deletions frozen/Adafruit_CircuitPython_JD79667
1 change: 1 addition & 0 deletions frozen/Adafruit_CircuitPython_MAX1704x
1 change: 1 addition & 0 deletions frozen/Adafruit_CircuitPython_NTP
1 change: 1 addition & 0 deletions frozen/Adafruit_CircuitPython_PCF8523
1 change: 1 addition & 0 deletions frozen/Adafruit_CircuitPython_SCD30
1 change: 1 addition & 0 deletions frozen/Adafruit_CircuitPython_SCD4X
1 change: 1 addition & 0 deletions frozen/Adafruit_CircuitPython_SEN6x
37 changes: 37 additions & 0 deletions ports/espressif/boards/adafruit_feather_esp32_v2/mpconfigboard.mk
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,40 @@ CIRCUITPY_ESP_FLASH_SIZE = 8MB
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
CIRCUITPY_ESP_PSRAM_MODE = qio
CIRCUITPY_ESP_PSRAM_FREQ = 40m

# --- environmental-collector frozen libraries -------------------------------
# Frozen bytecode executes in place from flash; the same library imported
# from lib/ is read into RAM and stays there. On a board without PSRAM that
# is the difference between running and not -- a Feather ESP32-S3 No PSRAM
# running this project, with its own code already cross-compiled to .mpy,
# had 6 KB of heap left once BLE + ESP-NOW + softAP were up and died on the
# next import.
#
# Listed literally rather than behind an include, even though the same 22
# lines repeat across every board this project targets: tools/
# ci_fetch_deps.py scans THIS file for "FROZEN_MPY_DIRS += $(TOP)/" to
# decide which submodules to check out, and it does not follow includes. An
# include builds locally and then fails CI at MKMANIFEST with empty frozen
# directories.
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BLE
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_HTTPServer
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Requests
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_ConnectionManager
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NTP
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Register
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Ticks
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SEN6x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD4X
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD30
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_MAX1704x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LC709203F
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_JD79667
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_IL0373
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Display_Text
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Bitmap_Font
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8563
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS3231
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8523
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS1307
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,40 @@ CIRCUITPY_ESP_FLASH_SIZE = 4MB

# Board was originally defined with a 2MB firmware, almost 2MB user filesystem. Leave it that way.
CIRCUITPY_4MB_FLASH_LARGE_USER_FS_LAYOUT = 1

# --- environmental-collector frozen libraries -------------------------------
# Frozen bytecode executes in place from flash; the same library imported
# from lib/ is read into RAM and stays there. On a board without PSRAM that
# is the difference between running and not -- a Feather ESP32-S3 No PSRAM
# running this project, with its own code already cross-compiled to .mpy,
# had 6 KB of heap left once BLE + ESP-NOW + softAP were up and died on the
# next import.
#
# Listed literally rather than behind an include, even though the same 22
# lines repeat across every board this project targets: tools/
# ci_fetch_deps.py scans THIS file for "FROZEN_MPY_DIRS += $(TOP)/" to
# decide which submodules to check out, and it does not follow includes. An
# include builds locally and then fails CI at MKMANIFEST with empty frozen
# directories.
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BLE
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_HTTPServer
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Requests
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_ConnectionManager
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NTP
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Register
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Ticks
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SEN6x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD4X
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD30
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_MAX1704x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LC709203F
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_JD79667
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_IL0373
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Display_Text
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Bitmap_Font
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8563
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS3231
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8523
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS1307
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,47 @@ CIRCUITPY_ESP_FLASH_FREQ = 80m
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
CIRCUITPY_ESP_PSRAM_MODE = qio
CIRCUITPY_ESP_PSRAM_FREQ = 80m

# This project needs _bleio on this board: the hub serves its portal over
# a Nordic UART service and the nodes take their config the same way. The
# port already defaults CIRCUITPY_BLEIO_NATIVE to 1 and only forces it off
# for 2MB flash, the S2 and the P4 -- stated here so a future flash-size
# trim cannot take it away silently.
CIRCUITPY_BLEIO_NATIVE = 1

# --- environmental-collector frozen libraries -------------------------------
# Frozen bytecode executes in place from flash; the same library imported
# from lib/ is read into RAM and stays there. On a board without PSRAM that
# is the difference between running and not -- a Feather ESP32-S3 No PSRAM
# running this project, with its own code already cross-compiled to .mpy,
# had 6 KB of heap left once BLE + ESP-NOW + softAP were up and died on the
# next import.
#
# Listed literally rather than behind an include, even though the same 22
# lines repeat across every board this project targets: tools/
# ci_fetch_deps.py scans THIS file for "FROZEN_MPY_DIRS += $(TOP)/" to
# decide which submodules to check out, and it does not follow includes. An
# include builds locally and then fails CI at MKMANIFEST with empty frozen
# directories.
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BLE
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_HTTPServer
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Requests
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_ConnectionManager
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NTP
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Register
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Ticks
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SEN6x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD4X
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD30
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_MAX1704x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LC709203F
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_JD79667
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_IL0373
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Display_Text
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Bitmap_Font
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8563
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS3231
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8523
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS1307
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,40 @@ IDF_TARGET = esp32s3
CIRCUITPY_ESP_FLASH_MODE = qio
CIRCUITPY_ESP_FLASH_FREQ = 80m
CIRCUITPY_ESP_FLASH_SIZE = 8MB

# --- environmental-collector frozen libraries -------------------------------
# Frozen bytecode executes in place from flash; the same library imported
# from lib/ is read into RAM and stays there. On a board without PSRAM that
# is the difference between running and not -- a Feather ESP32-S3 No PSRAM
# running this project, with its own code already cross-compiled to .mpy,
# had 6 KB of heap left once BLE + ESP-NOW + softAP were up and died on the
# next import.
#
# Listed literally rather than behind an include, even though the same 22
# lines repeat across every board this project targets: tools/
# ci_fetch_deps.py scans THIS file for "FROZEN_MPY_DIRS += $(TOP)/" to
# decide which submodules to check out, and it does not follow includes. An
# include builds locally and then fails CI at MKMANIFEST with empty frozen
# directories.
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BLE
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_HTTPServer
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Requests
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_ConnectionManager
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NTP
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Register
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Ticks
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SEN6x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD4X
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD30
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_MAX1704x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LC709203F
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_JD79667
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_IL0373
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Display_Text
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Bitmap_Font
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8563
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS3231
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8523
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS1307
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,47 @@ CIRCUITPY_ESP_PSRAM_FREQ = 80m

# Already have a display.
CIRCUITPY_PARALLELDISPLAYBUS = 0

# This project needs _bleio on this board: the hub serves its portal over
# a Nordic UART service and the nodes take their config the same way. The
# port already defaults CIRCUITPY_BLEIO_NATIVE to 1 and only forces it off
# for 2MB flash, the S2 and the P4 -- stated here so a future flash-size
# trim cannot take it away silently.
CIRCUITPY_BLEIO_NATIVE = 1

# --- environmental-collector frozen libraries -------------------------------
# Frozen bytecode executes in place from flash; the same library imported
# from lib/ is read into RAM and stays there. On a board without PSRAM that
# is the difference between running and not -- a Feather ESP32-S3 No PSRAM
# running this project, with its own code already cross-compiled to .mpy,
# had 6 KB of heap left once BLE + ESP-NOW + softAP were up and died on the
# next import.
#
# Listed literally rather than behind an include, even though the same 22
# lines repeat across every board this project targets: tools/
# ci_fetch_deps.py scans THIS file for "FROZEN_MPY_DIRS += $(TOP)/" to
# decide which submodules to check out, and it does not follow includes. An
# include builds locally and then fails CI at MKMANIFEST with empty frozen
# directories.
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BLE
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_HTTPServer
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Requests
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_ConnectionManager
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NTP
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Register
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Ticks
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SEN6x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD4X
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD30
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_MAX1704x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LC709203F
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_JD79667
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_IL0373
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Display_Text
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Bitmap_Font
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8563
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS3231
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8523
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS1307
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,47 @@ CIRCUITPY_ESP_PSRAM_FREQ = 80m

# Already have a display.
CIRCUITPY_PARALLELDISPLAYBUS = 0

# This project needs _bleio on this board: the hub serves its portal over
# a Nordic UART service and the nodes take their config the same way. The
# port already defaults CIRCUITPY_BLEIO_NATIVE to 1 and only forces it off
# for 2MB flash, the S2 and the P4 -- stated here so a future flash-size
# trim cannot take it away silently.
CIRCUITPY_BLEIO_NATIVE = 1

# --- environmental-collector frozen libraries -------------------------------
# Frozen bytecode executes in place from flash; the same library imported
# from lib/ is read into RAM and stays there. On a board without PSRAM that
# is the difference between running and not -- a Feather ESP32-S3 No PSRAM
# running this project, with its own code already cross-compiled to .mpy,
# had 6 KB of heap left once BLE + ESP-NOW + softAP were up and died on the
# next import.
#
# Listed literally rather than behind an include, even though the same 22
# lines repeat across every board this project targets: tools/
# ci_fetch_deps.py scans THIS file for "FROZEN_MPY_DIRS += $(TOP)/" to
# decide which submodules to check out, and it does not follow includes. An
# include builds locally and then fails CI at MKMANIFEST with empty frozen
# directories.
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BLE
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_HTTPServer
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Requests
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_ConnectionManager
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NTP
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Register
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Ticks
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SEN6x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD4X
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SCD30
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_MAX1704x
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LC709203F
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_JD79667
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_IL0373
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Display_Text
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Bitmap_Font
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8563
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS3231
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PCF8523
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DS1307
Loading
Loading