Skip to content

core: Derive Arduino pin configuration from Zephyr connector definitions#522

Open
soburi wants to merge 8 commits into
arduino:mainfrom
soburi:arduino_header_based_pin_config
Open

core: Derive Arduino pin configuration from Zephyr connector definitions#522
soburi wants to merge 8 commits into
arduino:mainfrom
soburi:arduino_header_based_pin_config

Conversation

@soburi

@soburi soburi commented Jun 20, 2026

Copy link
Copy Markdown

Summary

This PR adds a connector-based pin configuration path for boards that do
not define zephyr,user/digital-pin-gpios.

Many Zephyr boards already describe an Arduino-compatible connector using
an arduino_header node and its gpio-map. The new configuration path uses
this existing devicetree information instead of duplicating the digital pin
mapping in zephyr,user/digital-pin-gpios.

Changes

The configuration path is selected based on the presence of zephyr,user/digital-pin-gpios:

  • When digital-pin-gpios is present, preserve the existing configuration
    path using digital-pin-gpios, adc-pin-gpios, io-channels,
    pwm-pin-gpios, and pwms.
  • When digital-pin-gpios is absent:
    • Use global GPIO numbering.
    • Derive Arduino digital pin definitions and GPIO flags from the Arduino connector's gpio-map.
    • Derive built-in LED definitions from devicetree aliases.
    • Derive ADC and PWM mappings from connector io-channel-map and pwm-map definitions when available.
  • Add documentation for both configuration paths.

Note on FRDM-MCXN947 migration

  • Migrate FRDM-MCXN947 to the connector-based configuration as a reference implementation.
  • Route Serial1 through FLEXCOMM2 LPUART2 instead of FLEXCOMM4 LPUART4.
  • Expose the onboard LEDs through ordinary header GPIO mappings, so their active-low polarity is no longer applied automatically.

Motivation

ArduinoCore-zephyr currently requires variant overlays that may duplicate
pin information already present in Zephyr's board devicetree.

Using connector definitions makes basic Arduino GPIO support available to
a wider range of Zephyr boards with Arduino-compatible headers and reduces
the amount of board-specific configuration maintained in this repository.

Note

This change needs to apply arduino/zephyr#22 simultaneously.

soburi added 2 commits June 19, 2026 20:30
Move the constant array derived from devicetree to wiring_private.h
and convert it to constexpr.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
Define `invalid_pin_number` and replace `pin_size_t(-1)`.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
@github-actions

Copy link
Copy Markdown

Built 0.56.1-0.pr.522.8+1f958b98

CI run PASSED 🟢

ArtifactBoardCoreTestsRAMSketchesWarningsErrors
✅* zephyr_contrib ek_ra8d1 📗 ✅*

11.9%

22-
frdm_mcxn947 7 🏷️

58.7%

2--
frdm_rw612 2 🏷️ ✅*

83.0%

22-
✔️* zephyr_main giga 5 🏷️ ✅*

39.4%

6826-
nano33ble 1 🏷️ ✅*

78.8%

308-
nano_matter 1 🏷️ ✅*

⚠️ 86.1%

228-
nicla_sense 2 🏷️ ✅*

⚠️ 87.6%

188-
nicla_vision 5 🏷️ ✔️*

41.7%

5216(2*)
opta 5 🏷️ ✅*

42.4%

6216-
portentac33 3 🏷️ ✅*

80.6%

6616-
portentah7 4 🏷️ ✅*

43.2%

8022-
✅* zephyr_unoq unoq 📗 ✅*

43.5%

568-
Legend

BoardTestStatus description
🔥 🔥 Test run failed to complete.
🔴 Test completed with unexpected errors.
⁉️ ⁉️ Test was expected to fail but passed; exception entry is outdated.
✔️* 🚫 Test completed with errors, but all are known/expected.
✅* 🟡 Test completed with some warnings; no errors detected.
🟢 Test passed successfully, with no warnings or errors.
🌑 🌑 Test was skipped.

In preparation for improvements to allow the use of GPIOs without device
tree definitions, the interface will be changed to specify port and pin
instead of `gpio_dt_spec`.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>

@pillo79 pillo79 left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@soburi @DhruvaG2000

Absolutely love this patch set! It got me thinking all day and I did take the opportunity to push it a step further, refactoring the "zephyr,user" logic as well in a separate file. A few iterations later and I think I have something nice that neatly cleans up the Arduino.h header file to only contain high level code.

Please take a look at the changes in my fork (or just compare my version of your branch):

  • commits 1 & 2 are unchanged;
  • commit 3 is modified (it was missing the basic definition of a few functions that only get defined later);
  • commit 4 is added by me and moves most existing DT macros to a new dt_user_pins.h header
  • commit 5 & 6 have been rewritten to do the same as your commits, but taking advantage of this new layout: the connector file is called dt_connector.h and it includes a few extra definitions that minimize DT code outside these files.
  • commits 7 & 8 are unchanged.

Have to leave for today, haven't tested it yet so no PR yet 😅 but I wanted to give you a heads up so you have some extra time - please take a look if this could be a workable solution. Letme know what you guys think and feel free to take anything from my branch.

Move DIGITAL_PIN_*, LED_BUILTIN_INDEX_BY_REG_AND_PINNUM, and
DIGITAL_PIN_GPIOS_FIND_PIN/NODE from Arduino.h into the new
dt_user_pins.h header.  Move PWM_DT_SPEC, PWM_PINS, ADC_DT_SPEC,
ADC_PINS from wiring_private.h into dt_user_pins.h, renaming them
to the ZARD_ namespace (ZARD_PWM_DT_SPEC, ZARD_PWM_PINS,
ZARD_ADC_DT_SPEC, ZARD_ADC_PINS).

Rename the enum helpers DN_ENUMS/AN_ENUMS/DAC_ENUMS to
ZARD_DN_ENUMS/ZARD_AN_ENUMS/ZARD_DAC_ENUMS.

Arduino.h gains a single unconditional #include "dt_user_pins.h".
No functional change.

Signed-off-by: Luca Burelli <l.burelli@arduino.cc>
Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
Copilot AI review requested due to automatic review settings July 1, 2026 14:15
@soburi soburi force-pushed the arduino_header_based_pin_config branch from 1f958b9 to ad15675 Compare July 1, 2026 14:15

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR introduces a connector-derived pin configuration path that uses Zephyr connector devicetree definitions (notably arduino_header + gpio-map) when /zephyr,user/digital-pin-gpios is not present, reducing overlay duplication and broadening board compatibility. It also migrates the FRDM-MCXN947 variant to the new connector-based approach and adds new documentation describing both configuration modes and their pin-number semantics.

Changes:

  • Add connector-based derivation of Arduino digital pin definitions, GPIO flags, built-in LED selection, and optional ADC/PWM association/provisioning from connector maps.
  • Refactor core GPIO helpers to support both digital-pin-gpios and global GPIO numbering modes.
  • Add configuration guide/reference documentation and update FRDM-MCXN947 overlays to use connector mapping (plus ADC/PWM enablement).

Reviewed changes

Copilot reviewed 16 out of 16 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
variants/frdm_mcxn947_mcxn947_cpu0/frdm_mcxn947_mcxn947_cpu0.overlay Migrates FRDM-MCXN947 to connector-based GPIO map and adds ADC/PWM connector + pinmux/channel config.
variants/frdm_mcxn947_mcxn947_cpu0/frdm_mcxn947_mcxn947_cpu0.conf Enables ADC and PWM Kconfig needed for the new FRDM mapping.
documentation/variants.md Updates variant documentation to reflect connector-derived/global-pin behavior and bus-label naming.
documentation/configuration-reference.md Adds a detailed reference describing precedence rules and global GPIO numbering semantics.
documentation/configuration-guide.md Adds a practical guide describing “support levels” and how to configure boards.
cores/arduino/zephyrCommon.cpp Switches digital-pin-to-port/pin lookups to the new local/global GPIO helpers.
cores/arduino/wiring_pulse.cpp Updates pulseIn to use local/global GPIO helpers rather than gpio_dt_spec.
cores/arduino/wiring_private.h Introduces connector/global GPIO lookup tables and shared helpers for both DT paths.
cores/arduino/wiring_digital.cpp Routes pinMode/digitalRead/digitalWrite through the new GPIO helpers.
cores/arduino/wiring_analog.cpp Extends ADC/PWM support to work from either zephyr,user properties or connector maps.
cores/arduino/WInterrupts.cpp Updates interrupt routing to use local/global GPIO helpers.
cores/arduino/Tone.cpp Updates tone pin tracking and connector-mode MAX_TONE_PINS sizing.
cores/arduino/dt_user_pins.h Adds helper macros for the zephyr,user (explicit list) pin-definition path.
cores/arduino/dt_connector.h Adds helper macros for connector-based derivation and global GPIO numbering.
cores/arduino/connectors/arduino_header_r3.h Defines connector-specific naming and feature classification for Arduino Header R3.
cores/arduino/Arduino.h Selects between user-pin and connector paths and refactors LED + pin enum generation.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread cores/arduino/Arduino.h
Comment thread cores/arduino/Arduino.h
@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

Built 0.56.1-0.pr.522.52+ad15675f

CI run PASSED 🟢

ArtifactBoardCoreTestsRAMSketchesWarningsErrors
✅* zephyr_contrib ek_ra8d1 📗 ✅*

11.9%

22-
frdm_mcxn947 7 🏷️ ✅*

58.7%

22-
frdm_rw612 2 🏷️ ✅*

83.0%

22-
✔️* zephyr_main giga 5 🏷️ ✅*

39.3%

7240-
nano33ble 1 🏷️ ✅*

78.9%

4218-
nano_connect 📗 ✅*

48.0%

3218-
nano_matter 1 🏷️ ✅*

⚠️ 86.1%

2210-
nicla_sense 2 🏷️ ✅*

⚠️ 87.6%

1810-
nicla_vision 4 🏷️ ✔️*

39.5%

5628(2*)
opta 4 🏷️ ✅*

42.4%

6644-
portentac33 2 🏷️ ✅*

81.8%

7070-
portentah7 3 🏷️ ✅*

41.2%

8452-
✅* zephyr_unoq unoq 📗 ✅*

43.5%

5612-
Legend

BoardTestStatus description
🔥 🔥 Test run failed to complete.
🔴 Test completed with unexpected errors.
⁉️ ⁉️ Test was expected to fail but passed; exception entry is outdated.
✔️* 🚫 Test completed with errors, but all are known/expected.
✅* 🟡 Test completed with some warnings; no errors detected.
🟢 Test passed successfully, with no warnings or errors.
🌑 🌑 Test was skipped.

soburi and others added 4 commits July 1, 2026 23:44
When digital-pin-gpios is absent, derive Arduino pin numbers and GPIO
configuration from the Arduino connector gpio-map.

Use global GPIO numbering for connector-based configurations and derive
built-in LED definitions and GPIO flags from devicetree.

This allows ArduinoCore-Zephyr to be used on boards that have
arduino-header defined,
without requiring specific configuration in ArduinoCore-Zephyr.

Co-authored-by: Luca Burelli <l.burelli@arduino.cc>
Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
Generate ADC and PWM channel mappings from connector io-channel-map and
pwm-map definitions when the legacy zephyr,user properties are absent.

Co-authored-by: Luca Burelli <l.burelli@arduino.cc>
Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
Add guide for adding new board configuration and configuration
reference.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
Define the Arduino header and its ADC and PWM mappings using connector
nodes. Enable ADC and PWM support and remove the legacy
digital-pin-gpios configuration.

Use arduino_serial, arduino_i2c, and arduino_spi aliases for the
peripherals exposed through the Arduino header. This changes Serial1
from LPUART4 to LPUART2.

The connector definitions are based on the newer Zephyr board
configuration and can be removed when the bundled Zephyr version is
updated.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
@soburi soburi force-pushed the arduino_header_based_pin_config branch from ad15675 to c6c508b Compare July 1, 2026 14:49
@soburi

soburi commented Jul 1, 2026

Copy link
Copy Markdown
Author

@soburi @DhruvaG2000

Absolutely love this patch set! It got me thinking all day and I did take the opportunity to push it a step further, refactoring the "zephyr,user" logic as well in a separate file. A few iterations later and I think I have something nice that neatly cleans up the Arduino.h header file to only contain high level code.

Please take a look at the changes in my fork (or just compare my version of your branch):

* commits 1 & 2 are unchanged;

* commit 3 is modified (it was missing the basic definition of a few functions that only get defined later);

* commit 4 is added by me and moves most existing DT macros to a new `dt_user_pins.h` header

* commit 5 & 6 have been rewritten to do the same as your commits, but taking advantage of this new layout: the connector file is called `dt_connector.h` and it includes a few extra definitions that minimize DT code outside these files.

* commits 7 & 8 are unchanged.

Have to leave for today, haven't tested it yet so no PR yet 😅 but I wanted to give you a heads up so you have some extra time - please take a look if this could be a workable solution. Letme know what you guys think and feel free to take anything from my branch.

The proposal was acceptable in principle, so I incorporated it almost exactly as is.
Thank you for adding comments for easily read the code.

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 16 out of 16 changed files in this pull request and generated 3 comments.

Comment thread cores/arduino/Tone.cpp
Comment thread cores/arduino/wiring_private.h
Comment thread cores/arduino/dt_user_pins.h
@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

Built 0.56.1-0.pr.522.52+c6c508b1

CI run PASSED 🟢

ArtifactBoardCoreTestsRAMSketchesWarningsErrors
✅* zephyr_contrib ek_ra8d1 📗 ✅*

11.9%

22-
frdm_mcxn947 7 🏷️ ✅*

58.7%

22-
frdm_rw612 2 🏷️ ✅*

83.0%

22-
✔️* zephyr_main giga 5 🏷️ ✅*

39.3%

7240-
nano33ble 1 🏷️ ✅*

78.9%

4218-
nano_connect 📗 ✅*

48.0%

3218-
nano_matter 1 🏷️ ✅*

⚠️ 86.1%

2210-
nicla_sense 2 🏷️ ✅*

⚠️ 87.6%

1810-
nicla_vision 4 🏷️ ✔️*

39.5%

5628(2*)
opta 4 🏷️ ✅*

42.4%

6644-
portentac33 2 🏷️ ✅*

81.8%

7070-
portentah7 3 🏷️ ✅*

41.2%

8452-
✅* zephyr_unoq unoq 📗 ✅*

43.5%

5612-
Legend

BoardTestStatus description
🔥 🔥 Test run failed to complete.
🔴 Test completed with unexpected errors.
⁉️ ⁉️ Test was expected to fail but passed; exception entry is outdated.
✔️* 🚫 Test completed with errors, but all are known/expected.
✅* 🟡 Test completed with some warnings; no errors detected.
🟢 Test passed successfully, with no warnings or errors.
🌑 🌑 Test was skipped.

@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

Memory usage change @ c6c508b

Board flash % RAM for global variables %
arduino:zephyr:unoq:link_mode=dynamic 🔺 0 - +76 0.0 - 0.0 🔺 0 - +28 0.0 - 0.0
arduino:zephyr:unoq:link_mode=static 🔺 0 - +28 0.0 - 0.0 0 - 0 0.0 - 0.0
arduino:zephyr_contrib:ek_ra8d1:link_mode=dynamic 🔺 +80 - +80 +0.01 - +0.01 🔺 +36 - +36 +0.08 - +0.08
arduino:zephyr_contrib:ek_ra8d1:link_mode=static 🔺 +36 - +36 +0.05 - +0.05 0 - 0 0.0 - 0.0
arduino:zephyr_contrib:frdm_mcxn947:link_mode=dynamic 🔺 +1536 - +1536 +0.12 - +0.12 🔺 +208 - +208 +0.07 - +0.07
arduino:zephyr_contrib:frdm_mcxn947:link_mode=static 🔺 +1000 - +1000 +0.4 - +0.4 🔺 +680 - +680 +0.85 - +0.85
arduino:zephyr_contrib:frdm_rw612:link_mode=dynamic 0 - 0 0.0 - 0.0 0 - 0 0.0 - 0.0
arduino:zephyr_contrib:frdm_rw612:link_mode=static 0 - 0 0.0 - 0.0 0 - 0 0.0 - 0.0
arduino:zephyr_main:giga:link_mode=dynamic 🔺 0 - +72 0.0 - 0.0 🔺 0 - +28 0.0 - 0.0
arduino:zephyr_main:giga:link_mode=static 🔺 0 - +28 0.0 - 0.0 0 - 0 0.0 - 0.0
arduino:zephyr_main:nano33ble:link_mode=dynamic 🔺 0 - +72 0.0 - 0.0 🔺 0 - +28 0.0 - 0.0
arduino:zephyr_main:nano33ble:link_mode=static 🔺 0 - +28 0.0 - 0.0 0 - 0 0.0 - 0.0
arduino:zephyr_main:nano_connect:link_mode=dynamic 🔺 0 - +68 0.0 - 0.0 🔺 0 - +24 0.0 - 0.0
arduino:zephyr_main:nano_connect:link_mode=static 🔺 0 - +24 0.0 - 0.0 0 - 0 0.0 - 0.0
arduino:zephyr_main:nano_matter:link_mode=dynamic 🔺 0 - +432 0.0 - +0.05 🔺 0 - +104 0.0 - +0.1
arduino:zephyr_main:nano_matter:link_mode=static 🔺 0 - +372 0.0 - +0.16 0 - 0 0.0 - 0.0
arduino:zephyr_main:nicla_sense:link_mode=dynamic 🔺 0 - +72 0.0 - +0.01 🔺 0 - +28 0.0 - +0.05
arduino:zephyr_main:nicla_sense:link_mode=static 🔺 0 - +28 0.0 - +0.03 0 - 0 0.0 - 0.0
arduino:zephyr_main:nicla_vision:link_mode=dynamic 🔺 0 - +72 0.0 - 0.0 🔺 0 - +28 0.0 - 0.0
arduino:zephyr_main:nicla_vision:link_mode=static 🔺 0 - +28 0.0 - 0.0 0 - 0 0.0 - 0.0
arduino:zephyr_main:opta:link_mode=dynamic 🔺 0 - +72 0.0 - 0.0 🔺 0 - +28 0.0 - 0.0
arduino:zephyr_main:opta:link_mode=static 🔺 0 - +28 0.0 - +0.01 0 - 0 0.0 - 0.0
arduino:zephyr_main:portentac33:link_mode=dynamic 🔺 0 - +76 0.0 - 0.0 🔺 0 - +28 0.0 - 0.0
arduino:zephyr_main:portentac33:link_mode=static 🔺 0 - +28 0.0 - 0.0 0 - 0 0.0 - 0.0
arduino:zephyr_main:portentah7:link_mode=dynamic 🔺 0 - +76 0.0 - 0.0 🔺 0 - +28 0.0 - 0.0
arduino:zephyr_main:portentah7:link_mode=static 🔺 0 - +28 0.0 - 0.0 0 - 0 0.0 - 0.0
Click for full report table
Board arduino-examples 01.Basics/AnalogReadSerial
flash
% arduino-examples 01.Basics/AnalogReadSerial
RAM for global variables
% arduino-examples 01.Basics/Blink
flash
% arduino-examples 01.Basics/Blink
RAM for global variables
% arduino-examples 04.Communication/SerialPassthrough
flash
% arduino-examples 04.Communication/SerialPassthrough
RAM for global variables
% ArduinoBLE Central/LedControl
flash
% ArduinoBLE Central/LedControl
RAM for global variables
% ArduinoBLE Central/Scan
flash
% ArduinoBLE Central/Scan
RAM for global variables
% ArduinoBLE Peripheral/Advertising/EnhancedAdvertising
flash
% ArduinoBLE Peripheral/Advertising/EnhancedAdvertising
RAM for global variables
% ArduinoBLE Peripheral/ButtonLED
flash
% ArduinoBLE Peripheral/ButtonLED
RAM for global variables
% Arduino_JSON JSONArray
flash
% Arduino_JSON JSONArray
RAM for global variables
% Arduino_JSON JSONKitchenSink
flash
% Arduino_JSON JSONKitchenSink
RAM for global variables
% Arduino_JSON JSONObject
flash
% Arduino_JSON JSONObject
RAM for global variables
% Arduino_JSON JSONValueExtractor
flash
% Arduino_JSON JSONValueExtractor
RAM for global variables
% Arduino_LED_Matrix Basic
flash
% Arduino_LED_Matrix Basic
RAM for global variables
% Arduino_LED_Matrix Reflash_Bootanimation
flash
% Arduino_LED_Matrix Reflash_Bootanimation
RAM for global variables
% Arduino_LED_Matrix Video
flash
% Arduino_LED_Matrix Video
RAM for global variables
% Arduino_RPClite rpc_lite_client
flash
% Arduino_RPClite rpc_lite_client
RAM for global variables
% Arduino_RPClite rpc_lite_server
flash
% Arduino_RPClite rpc_lite_server
RAM for global variables
% Arduino_RouterBridge client
flash
% Arduino_RouterBridge client
RAM for global variables
% Arduino_RouterBridge hci
flash
% Arduino_RouterBridge hci
RAM for global variables
% Arduino_RouterBridge monitor
flash
% Arduino_RouterBridge monitor
RAM for global variables
% Arduino_RouterBridge server
flash
% Arduino_RouterBridge server
RAM for global variables
% Arduino_RouterBridge udp_ntp_client
flash
% Arduino_RouterBridge udp_ntp_client
RAM for global variables
% CAN CANEvent
flash
% CAN CANEvent
RAM for global variables
% CAN CANRead
flash
% CAN CANRead
RAM for global variables
% CAN CANWrite
flash
% CAN CANWrite
RAM for global variables
% M95M01 M95M01_test
flash
% M95M01 M95M01_test
RAM for global variables
% RTC AlarmRTC
flash
% RTC AlarmRTC
RAM for global variables
% RTC CalibrationRTC
flash
% RTC CalibrationRTC
RAM for global variables
% RTC SimpleRTC
flash
% RTC SimpleRTC
RAM for global variables
% Arduino_GigaDisplayTouch Touch_IRQ
flash
% Arduino_GigaDisplayTouch Touch_IRQ
RAM for global variables
% Arduino_GigaDisplayTouch Touch_Polling
flash
% Arduino_GigaDisplayTouch Touch_Polling
RAM for global variables
% Arduino_SecureElement CertificateSigningRequest
flash
% Arduino_SecureElement CertificateSigningRequest
RAM for global variables
% Arduino_SecureElement ConfigurationLocking
flash
% Arduino_SecureElement ConfigurationLocking
RAM for global variables
% Arduino_SecureElement RandomNumber
flash
% Arduino_SecureElement RandomNumber
RAM for global variables
% Arduino_SecureElement SelfSignedCertificate
flash
% Arduino_SecureElement SelfSignedCertificate
RAM for global variables
% Arduino_Video ArduinoLogo
flash
% Arduino_Video ArduinoLogo
RAM for global variables
% Arduino_Video ArduinoLogoDrawing
flash
% Arduino_Video ArduinoLogoDrawing
RAM for global variables
% Arduino_Video LVGLDemo
flash
% Arduino_Video LVGLDemo
RAM for global variables
% Camera CameraCaptureRawBytes
flash
% Camera CameraCaptureRawBytes
RAM for global variables
% Storage FlashFormat
flash
% Storage FlashFormat
RAM for global variables
% Storage ListFiles
flash
% Storage ListFiles
RAM for global variables
% Storage PartitionInfo
flash
% Storage PartitionInfo
RAM for global variables
% Storage SDListFiles
flash
% Storage SDListFiles
RAM for global variables
% WiFi ScanNetworksAdvanced
flash
% WiFi ScanNetworksAdvanced
RAM for global variables
% WiFi WiFiWebClient
flash
% WiFi WiFiWebClient
RAM for global variables
% WiFi WiFiWebClientTLS
flash
% WiFi WiFiWebClientTLS
RAM for global variables
% Zephyr_SDRAM SDRAM_operations
flash
% Zephyr_SDRAM SDRAM_operations
RAM for global variables
% Arduino_APDS9960 ColorSensor
flash
% Arduino_APDS9960 ColorSensor
RAM for global variables
% Arduino_BMI270_BMM150 SimpleAccelerometer
flash
% Arduino_BMI270_BMM150 SimpleAccelerometer
RAM for global variables
% Arduino_HS300x ReadSensors
flash
% Arduino_HS300x ReadSensors
RAM for global variables
% Arduino_LPS22HB ReadPressure
flash
% Arduino_LPS22HB ReadPressure
RAM for global variables
% PDM PDMCaptureRawBytes
flash
% PDM PDMCaptureRawBytes
RAM for global variables
% PDM PDMSerialPlotter
flash
% PDM PDMSerialPlotter
RAM for global variables
% ArduinoCore-zephyr/libraries/Camera/examples/CameraCaptureRawBytes
flash
% ArduinoCore-zephyr/libraries/Camera/examples/CameraCaptureRawBytes
RAM for global variables
% Ethernet AdvancedChatServer
flash
% Ethernet AdvancedChatServer
RAM for global variables
% Ethernet LinkStatus
flash
% Ethernet LinkStatus
RAM for global variables
% Ethernet TelnetClient
flash
% Ethernet TelnetClient
RAM for global variables
% Ethernet UDPSendReceiveString
flash
% Ethernet UDPSendReceiveString
RAM for global variables
% Ethernet UdpNtpClient
flash
% Ethernet UdpNtpClient
RAM for global variables
% Ethernet WebClient
flash
% Ethernet WebClient
RAM for global variables
% Ethernet WebClientRepeating
flash
% Ethernet WebClientRepeating
RAM for global variables
% Ethernet WebServer
flash
% Ethernet WebServer
RAM for global variables
%
arduino:zephyr:unoq:link_mode=dynamic 0 0.0 0 0.0 76 0.0 28 0.0 0 0.0 0 0.0 68 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 76 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 76 0.0 28 0.0 76 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 76 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 68 0.0 28 0.0 68 0.0 28 0.0 76 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr:unoq:link_mode=static 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_contrib:ek_ra8d1:link_mode=dynamic 80 0.01 36 0.08
arduino:zephyr_contrib:ek_ra8d1:link_mode=static 36 0.05 0 0.0
arduino:zephyr_contrib:frdm_mcxn947:link_mode=dynamic 1536 0.12 208 0.07
arduino:zephyr_contrib:frdm_mcxn947:link_mode=static 1000 0.4 680 0.85
arduino:zephyr_contrib:frdm_rw612:link_mode=dynamic 0 0.0 0 0.0
arduino:zephyr_contrib:frdm_rw612:link_mode=static 0 0.0 0 0.0
arduino:zephyr_main:giga:link_mode=dynamic 4 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 68 0.0 28 0.0 64 0.0 28 0.0 68 0.0 28 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 72 0.0 28 0.0 68 0.0 28 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:giga:link_mode=static 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:nano33ble:link_mode=dynamic 4 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 68 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 64 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:nano33ble:link_mode=static 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:nano_connect:link_mode=dynamic 0 0.0 0 0.0 68 0.0 24 0.0 0 0.0 0 0.0 68 0.0 24 0.0 68 0.0 24 0.0 68 0.0 24 0.0 68 0.0 24 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 68 0.0 24 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:nano_connect:link_mode=static 0 0.0 0 0.0 24 0.0 0 0.0 0 0.0 0 0.0 24 0.0 0 0.0 24 0.0 0 0.0 24 0.0 0 0.0 24 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 24 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:nano_matter:link_mode=dynamic 0 0.0 0 0.0 432 0.05 104 0.1 428 0.0 104 0.0 0 0.0 0 0.0 0 0.0 0 0.0 432 0.0 104 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 432 0.02 104 0.01
arduino:zephyr_main:nano_matter:link_mode=static 0 0.0 0 0.0 372 0.16 0 0.0 372 0.01 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 372 0.01 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 372 0.05 0 0.0
arduino:zephyr_main:nicla_sense:link_mode=dynamic 0 0.0 0 0.0 72 0.01 28 0.05 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:nicla_sense:link_mode=static 0 0.0 0 0.0 28 0.03 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:nicla_vision:link_mode=dynamic 4 0.0 0 0.0 68 0.0 28 0.0 0 0.0 0 0.0 68 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 72 0.0 28 0.0 68 0.0 28 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 N/A N/A N/A N/A
arduino:zephyr_main:nicla_vision:link_mode=static 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 N/A N/A N/A N/A
arduino:zephyr_main:opta:link_mode=dynamic 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 68 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:opta:link_mode=static 0 0.0 0 0.0 28 0.01 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:portentac33:link_mode=dynamic 4 0.0 0 0.0 68 0.0 28 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 68 0.0 28 0.0 76 0.0 28 0.0 68 0.0 28 0.0 72 0.0 28 0.0 72 0.0 28 0.0 72 0.0 28 0.0 68 0.0 28 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:portentac33:link_mode=static 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
arduino:zephyr_main:portentah7:link_mode=dynamic 4 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 68 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 44 0.0 28 0.0 44 0.0 28 0.0 44 0.0 28 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 72 0.0 28 0.0 72 0.0 28 0.0 76 0.0 28 0.0 72 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 4 0.0 0 0.0
arduino:zephyr_main:portentah7:link_mode=static 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 28 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0 0 0.0
Click for full report CSV
Board,arduino-examples 01.Basics/AnalogReadSerial<br>flash,%,arduino-examples 01.Basics/AnalogReadSerial<br>RAM for global variables,%,arduino-examples 01.Basics/Blink<br>flash,%,arduino-examples 01.Basics/Blink<br>RAM for global variables,%,arduino-examples 04.Communication/SerialPassthrough<br>flash,%,arduino-examples 04.Communication/SerialPassthrough<br>RAM for global variables,%,ArduinoBLE Central/LedControl<br>flash,%,ArduinoBLE Central/LedControl<br>RAM for global variables,%,ArduinoBLE Central/Scan<br>flash,%,ArduinoBLE Central/Scan<br>RAM for global variables,%,ArduinoBLE Peripheral/Advertising/EnhancedAdvertising<br>flash,%,ArduinoBLE Peripheral/Advertising/EnhancedAdvertising<br>RAM for global variables,%,ArduinoBLE Peripheral/ButtonLED<br>flash,%,ArduinoBLE Peripheral/ButtonLED<br>RAM for global variables,%,Arduino_JSON JSONArray<br>flash,%,Arduino_JSON JSONArray<br>RAM for global variables,%,Arduino_JSON JSONKitchenSink<br>flash,%,Arduino_JSON JSONKitchenSink<br>RAM for global variables,%,Arduino_JSON JSONObject<br>flash,%,Arduino_JSON JSONObject<br>RAM for global variables,%,Arduino_JSON JSONValueExtractor<br>flash,%,Arduino_JSON JSONValueExtractor<br>RAM for global variables,%,Arduino_LED_Matrix Basic<br>flash,%,Arduino_LED_Matrix Basic<br>RAM for global variables,%,Arduino_LED_Matrix Reflash_Bootanimation<br>flash,%,Arduino_LED_Matrix Reflash_Bootanimation<br>RAM for global variables,%,Arduino_LED_Matrix Video<br>flash,%,Arduino_LED_Matrix Video<br>RAM for global variables,%,Arduino_RPClite rpc_lite_client<br>flash,%,Arduino_RPClite rpc_lite_client<br>RAM for global variables,%,Arduino_RPClite rpc_lite_server<br>flash,%,Arduino_RPClite rpc_lite_server<br>RAM for global variables,%,Arduino_RouterBridge client<br>flash,%,Arduino_RouterBridge client<br>RAM for global variables,%,Arduino_RouterBridge hci<br>flash,%,Arduino_RouterBridge hci<br>RAM for global variables,%,Arduino_RouterBridge monitor<br>flash,%,Arduino_RouterBridge monitor<br>RAM for global variables,%,Arduino_RouterBridge server<br>flash,%,Arduino_RouterBridge server<br>RAM for global variables,%,Arduino_RouterBridge udp_ntp_client<br>flash,%,Arduino_RouterBridge udp_ntp_client<br>RAM for global variables,%,CAN CANEvent<br>flash,%,CAN CANEvent<br>RAM for global variables,%,CAN CANRead<br>flash,%,CAN CANRead<br>RAM for global variables,%,CAN CANWrite<br>flash,%,CAN CANWrite<br>RAM for global variables,%,M95M01 M95M01_test<br>flash,%,M95M01 M95M01_test<br>RAM for global variables,%,RTC AlarmRTC<br>flash,%,RTC AlarmRTC<br>RAM for global variables,%,RTC CalibrationRTC<br>flash,%,RTC CalibrationRTC<br>RAM for global variables,%,RTC SimpleRTC<br>flash,%,RTC SimpleRTC<br>RAM for global variables,%,Arduino_GigaDisplayTouch Touch_IRQ<br>flash,%,Arduino_GigaDisplayTouch Touch_IRQ<br>RAM for global variables,%,Arduino_GigaDisplayTouch Touch_Polling<br>flash,%,Arduino_GigaDisplayTouch Touch_Polling<br>RAM for global variables,%,Arduino_SecureElement CertificateSigningRequest<br>flash,%,Arduino_SecureElement CertificateSigningRequest<br>RAM for global variables,%,Arduino_SecureElement ConfigurationLocking<br>flash,%,Arduino_SecureElement ConfigurationLocking<br>RAM for global variables,%,Arduino_SecureElement RandomNumber<br>flash,%,Arduino_SecureElement RandomNumber<br>RAM for global variables,%,Arduino_SecureElement SelfSignedCertificate<br>flash,%,Arduino_SecureElement SelfSignedCertificate<br>RAM for global variables,%,Arduino_Video ArduinoLogo<br>flash,%,Arduino_Video ArduinoLogo<br>RAM for global variables,%,Arduino_Video ArduinoLogoDrawing<br>flash,%,Arduino_Video ArduinoLogoDrawing<br>RAM for global variables,%,Arduino_Video LVGLDemo<br>flash,%,Arduino_Video LVGLDemo<br>RAM for global variables,%,Camera CameraCaptureRawBytes<br>flash,%,Camera CameraCaptureRawBytes<br>RAM for global variables,%,Storage FlashFormat<br>flash,%,Storage FlashFormat<br>RAM for global variables,%,Storage ListFiles<br>flash,%,Storage ListFiles<br>RAM for global variables,%,Storage PartitionInfo<br>flash,%,Storage PartitionInfo<br>RAM for global variables,%,Storage SDListFiles<br>flash,%,Storage SDListFiles<br>RAM for global variables,%,WiFi ScanNetworksAdvanced<br>flash,%,WiFi ScanNetworksAdvanced<br>RAM for global variables,%,WiFi WiFiWebClient<br>flash,%,WiFi WiFiWebClient<br>RAM for global variables,%,WiFi WiFiWebClientTLS<br>flash,%,WiFi WiFiWebClientTLS<br>RAM for global variables,%,Zephyr_SDRAM SDRAM_operations<br>flash,%,Zephyr_SDRAM SDRAM_operations<br>RAM for global variables,%,Arduino_APDS9960 ColorSensor<br>flash,%,Arduino_APDS9960 ColorSensor<br>RAM for global variables,%,Arduino_BMI270_BMM150 SimpleAccelerometer<br>flash,%,Arduino_BMI270_BMM150 SimpleAccelerometer<br>RAM for global variables,%,Arduino_HS300x ReadSensors<br>flash,%,Arduino_HS300x ReadSensors<br>RAM for global variables,%,Arduino_LPS22HB ReadPressure<br>flash,%,Arduino_LPS22HB ReadPressure<br>RAM for global variables,%,PDM PDMCaptureRawBytes<br>flash,%,PDM PDMCaptureRawBytes<br>RAM for global variables,%,PDM PDMSerialPlotter<br>flash,%,PDM PDMSerialPlotter<br>RAM for global variables,%,ArduinoCore-zephyr/libraries/Camera/examples/CameraCaptureRawBytes<br>flash,%,ArduinoCore-zephyr/libraries/Camera/examples/CameraCaptureRawBytes<br>RAM for global variables,%,Ethernet AdvancedChatServer<br>flash,%,Ethernet AdvancedChatServer<br>RAM for global variables,%,Ethernet LinkStatus<br>flash,%,Ethernet LinkStatus<br>RAM for global variables,%,Ethernet TelnetClient<br>flash,%,Ethernet TelnetClient<br>RAM for global variables,%,Ethernet UDPSendReceiveString<br>flash,%,Ethernet UDPSendReceiveString<br>RAM for global variables,%,Ethernet UdpNtpClient<br>flash,%,Ethernet UdpNtpClient<br>RAM for global variables,%,Ethernet WebClient<br>flash,%,Ethernet WebClient<br>RAM for global variables,%,Ethernet WebClientRepeating<br>flash,%,Ethernet WebClientRepeating<br>RAM for global variables,%,Ethernet WebServer<br>flash,%,Ethernet WebServer<br>RAM for global variables,%
arduino:zephyr:unoq:link_mode=dynamic,0,0.0,0,0.0,76,0.0,28,0.0,0,0.0,0,0.0,68,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,76,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,76,0.0,28,0.0,76,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,76,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,72,0.0,28,0.0,68,0.0,28,0.0,68,0.0,28,0.0,76,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr:unoq:link_mode=static,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr_contrib:ek_ra8d1:link_mode=dynamic,,,,,80,0.01,36,0.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_contrib:ek_ra8d1:link_mode=static,,,,,36,0.05,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_contrib:frdm_mcxn947:link_mode=dynamic,,,,,1536,0.12,208,0.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_contrib:frdm_mcxn947:link_mode=static,,,,,1000,0.4,680,0.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_contrib:frdm_rw612:link_mode=dynamic,,,,,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_contrib:frdm_rw612:link_mode=static,,,,,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_main:giga:link_mode=dynamic,4,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,0.0,28,0.0,64,0.0,28,0.0,68,0.0,28,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,72,0.0,28,0.0,72,0.0,28,0.0,68,0.0,28,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr_main:giga:link_mode=static,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr_main:nano33ble:link_mode=dynamic,4,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,68,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,0.0,28,0.0,64,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr_main:nano33ble:link_mode=static,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr_main:nano_connect:link_mode=dynamic,0,0.0,0,0.0,68,0.0,24,0.0,0,0.0,0,0.0,68,0.0,24,0.0,68,0.0,24,0.0,68,0.0,24,0.0,68,0.0,24,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,0.0,24,0.0,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_main:nano_connect:link_mode=static,0,0.0,0,0.0,24,0.0,0,0.0,0,0.0,0,0.0,24,0.0,0,0.0,24,0.0,0,0.0,24,0.0,0,0.0,24,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_main:nano_matter:link_mode=dynamic,0,0.0,0,0.0,432,0.05,104,0.1,,,,,428,0.0,104,0.0,0,0.0,0,0.0,0,0.0,0,0.0,432,0.0,104,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,432,0.02,104,0.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_main:nano_matter:link_mode=static,0,0.0,0,0.0,372,0.16,0,0.0,,,,,372,0.01,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,372,0.01,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,372,0.05,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_main:nicla_sense:link_mode=dynamic,0,0.0,0,0.0,72,0.01,28,0.05,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_main:nicla_sense:link_mode=static,0,0.0,0,0.0,28,0.03,0,0.0,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
arduino:zephyr_main:nicla_vision:link_mode=dynamic,4,0.0,0,0.0,68,0.0,28,0.0,0,0.0,0,0.0,68,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,72,0.0,28,0.0,72,0.0,28,0.0,68,0.0,28,0.0,72,0.0,28,0.0,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,N/A,N/A,N/A,N/A
arduino:zephyr_main:nicla_vision:link_mode=static,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,N/A,N/A,N/A,N/A
arduino:zephyr_main:opta:link_mode=dynamic,0,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,68,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr_main:opta:link_mode=static,0,0.0,0,0.0,28,0.01,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr_main:portentac33:link_mode=dynamic,4,0.0,0,0.0,68,0.0,28,0.0,0,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,0.0,28,0.0,76,0.0,28,0.0,68,0.0,28,0.0,72,0.0,28,0.0,,,,,,,,,,,,,,,,,,,,,72,0.0,28,0.0,72,0.0,28,0.0,68,0.0,28,0.0,72,0.0,28,0.0,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr_main:portentac33:link_mode=static,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0
arduino:zephyr_main:portentah7:link_mode=dynamic,4,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,68,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44,0.0,28,0.0,44,0.0,28,0.0,44,0.0,28,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,72,0.0,28,0.0,72,0.0,28,0.0,76,0.0,28,0.0,72,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,4,0.0,0,0.0
arduino:zephyr_main:portentah7:link_mode=static,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,28,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0,0,0.0

@soburi soburi requested a review from pillo79 July 1, 2026 15:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants