Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent malloc from overwriting the stack #681

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

matthijskooijman
Copy link
Collaborator

The current implementation of malloc (or really, the underlying sbrk() implementation) happily allocates any amount of memory, even when that overwrites the stack or even beyond the end of RAM. This is fixed by implementing a custom sbrk() function that does proper checking. The code is based on the sbrk() from the STM32 Arduino core, but with an additional margin added (to make it fail when it comes close to the stack, instead of just when it would actually overwrite the stack).

This margin approach is copied from avr-libc's malloc implementation. I considered also copying more of avr-libc's configurability (e.g. __malloc_heap_start and __malloc_heap_end), but that ended up just adding complexity without a very clear usecase, so I left that out.

See the d232b59 commit message for much more detail on this problem and the solution.

This PR also has a somewhat unrelated commit removing the -nostdlib compilation option, which was in the wrong place and thus effectively unused (and also unneeded).

This is a linker option, but was passed when compiling c or cpp files,
so it was effectively ignored by gcc (and passing it to the linker
actually breaks the build, so it is really not needed here).
When allocating memory with malloc, this calls _sbrk() to expand the
heap. The current implementation always succeeds, which makes malloc
always succeed, potentially returning memory that overlaps the stack, or
is even outside of the available RAM.

This commit fixes this by replacing the _sbrk() function by one which
fails rather than allocating memory too close to the stack (with
configurable margin).

= Background & history =
The malloc implementation used by this core is provided by newlib, which
is shipped along gcc in the toolchain package and is a libc
implementation intended for embedded systems. It implements the entire
user-facing API, but relies on a number of "syscalls", to be provided by
the underlying system to do the real work.

See https://sourceware.org/newlib/libc.html#Syscalls

These syscalls mostly concern handling of processes, and files, which
are not applicable here, so dummy implementations that simply returned
failure were originally provided by syscalls.c in this core.

In addition, the _sbrk() syscall *is* relevant, since it is used to
expand the heap when malloc runs out of memory to (re)use. Originally,
the samd core provided a very simple version that always succeeded,
which was later changed to fail when trying to allocate beyond the end
of memory (but would still happily overwrite the stack).

In commit 93c6355 (Resolving syscalls/_sbrk issue), the syscalls were
removed, and (among a lot of other flag changes) `--specs=nosys.specs`
was passed to the linker. Unlike what you might think, this "nosys" does
not instruct the linker to omit any system library, but it tells the
linker that no syscalls will be provided and makes it include the
libgloss "nosys" library.

This "nosys" library also provides dummy syscall implementations that
always fail, except for _sbrk(), which always succeeds (like the
original samd implementation).

So this left the samd core with a malloc that *always* succeeds without
regard for the stack or the end of RAM.

= Solution =
This is fixed by adding a _sbrk() implmentation that does check the
current stack location and fails allocation if that would overwrite the
stack.

This implementation of _sbrk() is based on the STM32 core, except with
some different variable and type names and with the minimum stack size
check omitted (since the linker scripts do not define such a minimum
size):

https://github.com/stm32duino/Arduino_Core_STM32/blob/616258269f7e5a2ef8b2f71bb2a55616b25d07db/libraries/SrcWrapper/src/syscalls.c#L29-L51

Because libgloss nosys defines its dummy _sbrk() as a weak symbol, it
can be overridden by a non-weak symbol in the samd core. However,
because the core is linked through an archive file, it will only be
included in the link if there is an unresolved reference to it (or
anything else in the same file, which is nothing) at the time the core
is linked. Normally, this undefined reference to _sbrk() is only
introduced when linking newlib at the end of the link, which is then
satisfied by libgloss (which is linked after newlib) rather than the
samd core.

To ensure that the samd core version is included instead, an artificial
unresolved reference is created in main.c (which *is* always included
because it defines main). This ensures that sbrk.c is pulled into the
link instead of the libgloss version.
The _sbrk() implementation added previously refuses to overwrite the
stack, but will still happily allocate all other memory, leaving none to
expand the stack into. Since the stack can expand over the heap
undetected, this changes sbrk() to leave a safety margin between the
heap and the stack (at the time of the malloc/_sbrk call). The size of
this margin can be configured (by the sketch) by changing the
`__malloc_margin` global variable, it defaults to 64 bytes.

This approach (both having a margin and making it configurable with the
`__malloc_margin`) is copied from the avr-libc malloc implementation,
see:

https://onlinedocs.microchip.com/pr/GUID-317042D4-BCCE-4065-BB05-AC4312DBC2C4-en-US-2/index.html?GUID-27757112-8BE1-49C2-B023-CD94AD06C5E2

avr-libc uses a default margin of 32 bytes, but given the bigger integer
and pointer size on ARM, this is doubled for this core.
@ArduinoBot
Copy link

✅ Build completed.

⬇️ Build URL: http://downloads.arduino.cc/PR/samd/package_samd-b220_index.json

ℹ️ To test this build:

  1. Open the Preferences of the Arduino IDE.
  2. Add the Build URL above in the Additional Boards Manager URLs field, and click OK.
  3. Open the Boards Manager (menu Tools->Board->Board Manager...)
  4. Install Arduino SAMD core - Pull Request Prevent malloc from overwriting the stack #681
  5. Select one of the boards under SAMD Pull Request Prevent malloc from overwriting the stack #681 in Tools->Board menu
  6. Compile/Upload as usual

@github-actions
Copy link

github-actions bot commented Sep 6, 2022

Memory usage change @ 4460dbc

Board flash % RAM for global variables %
arduino:samd:adafruit_circuitplayground_m0 🔺 +40 - +48 +0.02 - +0.02 🔺 +4 - +4 +0.01 - +0.01
arduino:samd:arduino_zero_edbg 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:arduino_zero_native 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mkr1000 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mkrfox1200 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mkrgsm1400 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mkrnb1500 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mkrvidor4000 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mkrwan1300 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mkrwan1310 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mkrwifi1010 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mkrzero 🔺 +32 - +56 +0.01 - +0.02 ❔ -4 - +12 -0.01 - +0.04
arduino:samd:mzero_bl 🔺 +40 - +48 +0.02 - +0.02 🔺 +4 - +4 +0.01 - +0.01
arduino:samd:mzero_pro_bl 🔺 +40 - +48 +0.02 - +0.02 🔺 +4 - +4 +0.01 - +0.01
arduino:samd:mzero_pro_bl_dbg 🔺 +40 - +48 +0.02 - +0.02 🔺 +4 - +4 +0.01 - +0.01
arduino:samd:nano_33_iot 🔺 +40 - +48 +0.02 - +0.02 🔺 +4 - +4 +0.01 - +0.01
arduino:samd:tian 🔺 +40 - +48 +0.02 - +0.02 🔺 +4 - +4 +0.01 - +0.01
Click for full report table
Board extras/examples/01.Basics/AnalogReadSerial
flash
% extras/examples/01.Basics/AnalogReadSerial
RAM for global variables
% extras/examples/01.Basics/BareMinimum
flash
% extras/examples/01.Basics/BareMinimum
RAM for global variables
% extras/examples/01.Basics/Blink
flash
% extras/examples/01.Basics/Blink
RAM for global variables
% extras/examples/01.Basics/DigitalReadSerial
flash
% extras/examples/01.Basics/DigitalReadSerial
RAM for global variables
% extras/examples/01.Basics/Fade
flash
% extras/examples/01.Basics/Fade
RAM for global variables
% extras/examples/01.Basics/ReadAnalogVoltage
flash
% extras/examples/01.Basics/ReadAnalogVoltage
RAM for global variables
% extras/examples/02.Digital/BlinkWithoutDelay
flash
% extras/examples/02.Digital/BlinkWithoutDelay
RAM for global variables
% extras/examples/02.Digital/Button
flash
% extras/examples/02.Digital/Button
RAM for global variables
% extras/examples/02.Digital/Debounce
flash
% extras/examples/02.Digital/Debounce
RAM for global variables
% extras/examples/02.Digital/DigitalInputPullup
flash
% extras/examples/02.Digital/DigitalInputPullup
RAM for global variables
% extras/examples/02.Digital/StateChangeDetection
flash
% extras/examples/02.Digital/StateChangeDetection
RAM for global variables
% extras/examples/02.Digital/toneKeyboard
flash
% extras/examples/02.Digital/toneKeyboard
RAM for global variables
% extras/examples/02.Digital/toneMelody
flash
% extras/examples/02.Digital/toneMelody
RAM for global variables
% extras/examples/02.Digital/toneMultiple
flash
% extras/examples/02.Digital/toneMultiple
RAM for global variables
% extras/examples/02.Digital/tonePitchFollower
flash
% extras/examples/02.Digital/tonePitchFollower
RAM for global variables
% extras/examples/03.Analog/AnalogInOutSerial
flash
% extras/examples/03.Analog/AnalogInOutSerial
RAM for global variables
% extras/examples/03.Analog/AnalogInput
flash
% extras/examples/03.Analog/AnalogInput
RAM for global variables
% extras/examples/03.Analog/AnalogWriteMega
flash
% extras/examples/03.Analog/AnalogWriteMega
RAM for global variables
% extras/examples/03.Analog/Calibration
flash
% extras/examples/03.Analog/Calibration
RAM for global variables
% extras/examples/03.Analog/Fading
flash
% extras/examples/03.Analog/Fading
RAM for global variables
% extras/examples/03.Analog/Smoothing
flash
% extras/examples/03.Analog/Smoothing
RAM for global variables
% extras/examples/04.Communication/ASCIITable
flash
% extras/examples/04.Communication/ASCIITable
RAM for global variables
% extras/examples/04.Communication/Dimmer
flash
% extras/examples/04.Communication/Dimmer
RAM for global variables
% extras/examples/04.Communication/Graph
flash
% extras/examples/04.Communication/Graph
RAM for global variables
% extras/examples/04.Communication/Midi
flash
% extras/examples/04.Communication/Midi
RAM for global variables
% extras/examples/04.Communication/MultiSerial
flash
% extras/examples/04.Communication/MultiSerial
RAM for global variables
% extras/examples/04.Communication/PhysicalPixel
flash
% extras/examples/04.Communication/PhysicalPixel
RAM for global variables
% extras/examples/04.Communication/ReadASCIIString
flash
% extras/examples/04.Communication/ReadASCIIString
RAM for global variables
% extras/examples/04.Communication/SerialCallResponse
flash
% extras/examples/04.Communication/SerialCallResponse
RAM for global variables
% extras/examples/04.Communication/SerialCallResponseASCII
flash
% extras/examples/04.Communication/SerialCallResponseASCII
RAM for global variables
% extras/examples/04.Communication/SerialEvent
flash
% extras/examples/04.Communication/SerialEvent
RAM for global variables
% extras/examples/04.Communication/SerialPassthrough
flash
% extras/examples/04.Communication/SerialPassthrough
RAM for global variables
% extras/examples/04.Communication/VirtualColorMixer
flash
% extras/examples/04.Communication/VirtualColorMixer
RAM for global variables
% extras/examples/05.Control/Arrays
flash
% extras/examples/05.Control/Arrays
RAM for global variables
% extras/examples/05.Control/ForLoopIteration
flash
% extras/examples/05.Control/ForLoopIteration
RAM for global variables
% extras/examples/05.Control/IfStatementConditional
flash
% extras/examples/05.Control/IfStatementConditional
RAM for global variables
% extras/examples/05.Control/WhileStatementConditional
flash
% extras/examples/05.Control/WhileStatementConditional
RAM for global variables
% extras/examples/05.Control/switchCase
flash
% extras/examples/05.Control/switchCase
RAM for global variables
% extras/examples/05.Control/switchCase2
flash
% extras/examples/05.Control/switchCase2
RAM for global variables
% extras/examples/06.Sensors/ADXL3xx
flash
% extras/examples/06.Sensors/ADXL3xx
RAM for global variables
% extras/examples/06.Sensors/Knock
flash
% extras/examples/06.Sensors/Knock
RAM for global variables
% extras/examples/06.Sensors/Memsic2125
flash
% extras/examples/06.Sensors/Memsic2125
RAM for global variables
% extras/examples/06.Sensors/Ping
flash
% extras/examples/06.Sensors/Ping
RAM for global variables
% extras/examples/07.Display/RowColumnScanning
flash
% extras/examples/07.Display/RowColumnScanning
RAM for global variables
% extras/examples/07.Display/barGraph
flash
% extras/examples/07.Display/barGraph
RAM for global variables
% extras/examples/08.Strings/CharacterAnalysis
flash
% extras/examples/08.Strings/CharacterAnalysis
RAM for global variables
% extras/examples/08.Strings/StringAdditionOperator
flash
% extras/examples/08.Strings/StringAdditionOperator
RAM for global variables
% extras/examples/08.Strings/StringAppendOperator
flash
% extras/examples/08.Strings/StringAppendOperator
RAM for global variables
% extras/examples/08.Strings/StringCaseChanges
flash
% extras/examples/08.Strings/StringCaseChanges
RAM for global variables
% extras/examples/08.Strings/StringCharacters
flash
% extras/examples/08.Strings/StringCharacters
RAM for global variables
% extras/examples/08.Strings/StringComparisonOperators
flash
% extras/examples/08.Strings/StringComparisonOperators
RAM for global variables
% extras/examples/08.Strings/StringConstructors
flash
% extras/examples/08.Strings/StringConstructors
RAM for global variables
% extras/examples/08.Strings/StringIndexOf
flash
% extras/examples/08.Strings/StringIndexOf
RAM for global variables
% extras/examples/08.Strings/StringLength
flash
% extras/examples/08.Strings/StringLength
RAM for global variables
% extras/examples/08.Strings/StringLengthTrim
flash
% extras/examples/08.Strings/StringLengthTrim
RAM for global variables
% extras/examples/08.Strings/StringReplace
flash
% extras/examples/08.Strings/StringReplace
RAM for global variables
% extras/examples/08.Strings/StringStartsWithEndsWith
flash
% extras/examples/08.Strings/StringStartsWithEndsWith
RAM for global variables
% extras/examples/08.Strings/StringSubstring
flash
% extras/examples/08.Strings/StringSubstring
RAM for global variables
% extras/examples/08.Strings/StringToInt
flash
% extras/examples/08.Strings/StringToInt
RAM for global variables
% extras/examples/09.USB/Keyboard/KeyboardLogout
flash
% extras/examples/09.USB/Keyboard/KeyboardLogout
RAM for global variables
% extras/examples/09.USB/Keyboard/KeyboardMessage
flash
% extras/examples/09.USB/Keyboard/KeyboardMessage
RAM for global variables
% extras/examples/09.USB/Keyboard/KeyboardReprogram
flash
% extras/examples/09.USB/Keyboard/KeyboardReprogram
RAM for global variables
% extras/examples/09.USB/Keyboard/KeyboardSerial
flash
% extras/examples/09.USB/Keyboard/KeyboardSerial
RAM for global variables
% extras/examples/09.USB/KeyboardAndMouseControl
flash
% extras/examples/09.USB/KeyboardAndMouseControl
RAM for global variables
% extras/examples/09.USB/Mouse/ButtonMouseControl
flash
% extras/examples/09.USB/Mouse/ButtonMouseControl
RAM for global variables
% extras/examples/09.USB/Mouse/JoystickMouseControl
flash
% extras/examples/09.USB/Mouse/JoystickMouseControl
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterface
flash
% extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterface
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p03_LoveOMeter
flash
% extras/examples/10.StarterKit_BasicKit/p03_LoveOMeter
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLamp
flash
% extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLamp
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicator
flash
% extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicator
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p06_LightTheremin
flash
% extras/examples/10.StarterKit_BasicKit/p06_LightTheremin
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p07_Keyboard
flash
% extras/examples/10.StarterKit_BasicKit/p07_Keyboard
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglass
flash
% extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglass
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheel
flash
% extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheel
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p10_Zoetrope
flash
% extras/examples/10.StarterKit_BasicKit/p10_Zoetrope
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p11_CrystalBall
flash
% extras/examples/10.StarterKit_BasicKit/p11_CrystalBall
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p12_KnockLock
flash
% extras/examples/10.StarterKit_BasicKit/p12_KnockLock
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLamp
flash
% extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLamp
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogo
flash
% extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogo
RAM for global variables
% extras/examples/10.StarterKit_BasicKit/p15_HackingButtons
flash
% extras/examples/10.StarterKit_BasicKit/p15_HackingButtons
RAM for global variables
% extras/examples/11.ArduinoISP/ArduinoISP
flash
% extras/examples/11.ArduinoISP/ArduinoISP
RAM for global variables
% libraries/Wire/examples/SFRRanger_reader
flash
% libraries/Wire/examples/SFRRanger_reader
RAM for global variables
% libraries/Wire/examples/digital_potentiometer
flash
% libraries/Wire/examples/digital_potentiometer
RAM for global variables
% libraries/Wire/examples/master_reader
flash
% libraries/Wire/examples/master_reader
RAM for global variables
% libraries/Wire/examples/master_writer
flash
% libraries/Wire/examples/master_writer
RAM for global variables
% libraries/Wire/examples/slave_receiver
flash
% libraries/Wire/examples/slave_receiver
RAM for global variables
% libraries/Wire/examples/slave_sender
flash
% libraries/Wire/examples/slave_sender
RAM for global variables
% libraries/USBHost/examples/ADKTerminalTest
flash
% libraries/USBHost/examples/ADKTerminalTest
RAM for global variables
% libraries/USBHost/examples/KeyboardController
flash
% libraries/USBHost/examples/KeyboardController
RAM for global variables
% libraries/USBHost/examples/MouseController
flash
% libraries/USBHost/examples/MouseController
RAM for global variables
% libraries/USBHost/examples/USB_desc
flash
% libraries/USBHost/examples/USB_desc
RAM for global variables
% libraries/SPI/examples/BarometricPressureSensor
flash
% libraries/SPI/examples/BarometricPressureSensor
RAM for global variables
% libraries/SPI/examples/DigitalPotControl
flash
% libraries/SPI/examples/DigitalPotControl
RAM for global variables
% libraries/SFU/examples/SFU_LoadBinary
flash
% libraries/SFU/examples/SFU_LoadBinary
RAM for global variables
% libraries/SAMD_AnalogCorrection/examples/CorrectADCResponse
flash
% libraries/SAMD_AnalogCorrection/examples/CorrectADCResponse
RAM for global variables
% /home/runner/Arduino/libraries/Servo/examples/Knob
flash
% /home/runner/Arduino/libraries/Servo/examples/Knob
RAM for global variables
% /home/runner/Arduino/libraries/Servo/examples/Sweep
flash
% /home/runner/Arduino/libraries/Servo/examples/Sweep
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscroll
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscroll
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Blink
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Blink
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursor
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursor
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacter
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacter
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Display
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Display
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorld
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorld
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Scroll
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/Scroll
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplay
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplay
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirection
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirection
RAM for global variables
% /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursor
flash
% /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursor
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServer
flash
% /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServer
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServer
flash
% /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServer
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/ChatServer
flash
% /home/runner/Arduino/libraries/Ethernet/examples/ChatServer
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinter
flash
% /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinter
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServer
flash
% /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServer
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/LinkStatus
flash
% /home/runner/Arduino/libraries/Ethernet/examples/LinkStatus
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/PagerServer
flash
% /home/runner/Arduino/libraries/Ethernet/examples/PagerServer
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/TelnetClient
flash
% /home/runner/Arduino/libraries/Ethernet/examples/TelnetClient
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveString
flash
% /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveString
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClient
flash
% /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClient
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/WebClient
flash
% /home/runner/Arduino/libraries/Ethernet/examples/WebClient
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeating
flash
% /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeating
RAM for global variables
% /home/runner/Arduino/libraries/Ethernet/examples/WebServer
flash
% /home/runner/Arduino/libraries/Ethernet/examples/WebServer
RAM for global variables
% /home/runner/Arduino/libraries/SD/examples/CardInfo
flash
% /home/runner/Arduino/libraries/SD/examples/CardInfo
RAM for global variables
% /home/runner/Arduino/libraries/SD/examples/Datalogger
flash
% /home/runner/Arduino/libraries/SD/examples/Datalogger
RAM for global variables
% /home/runner/Arduino/libraries/SD/examples/DumpFile
flash
% /home/runner/Arduino/libraries/SD/examples/DumpFile
RAM for global variables
% /home/runner/Arduino/libraries/SD/examples/Files
flash
% /home/runner/Arduino/libraries/SD/examples/Files
RAM for global variables
% /home/runner/Arduino/libraries/SD/examples/NonBlockingWrite
flash
% /home/runner/Arduino/libraries/SD/examples/NonBlockingWrite
RAM for global variables
% /home/runner/Arduino/libraries/SD/examples/ReadWrite
flash
% /home/runner/Arduino/libraries/SD/examples/ReadWrite
RAM for global variables
% /home/runner/Arduino/libraries/SD/examples/listfiles
flash
% /home/runner/Arduino/libraries/SD/examples/listfiles
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryption
flash
% /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryption
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEP
flash
% /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEP
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPA
flash
% /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPA
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/ScanNetworks
flash
% /home/runner/Arduino/libraries/WiFi/examples/ScanNetworks
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFi
flash
% /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFi
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServer
flash
% /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServer
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClient
flash
% /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClient
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveString
flash
% /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveString
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClient
flash
% /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClient
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeating
flash
% /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeating
RAM for global variables
% /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServer
flash
% /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServer
RAM for global variables
% /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometer
flash
% /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometer
RAM for global variables
% /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscope
flash
% /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscope
RAM for global variables
% /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometer
flash
% /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometer
RAM for global variables
% /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArray
flash
% /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArray
RAM for global variables
% /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSink
flash
% /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSink
RAM for global variables
% /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObject
flash
% /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObject
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/ChangeUID
flash
% /home/runner/Arduino/libraries/MFRC522/examples/ChangeUID
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/DumpInfo
flash
% /home/runner/Arduino/libraries/MFRC522/examples/DumpInfo
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUID
flash
% /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUID
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlock
flash
% /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlock
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterrupt
flash
% /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterrupt
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTH
flash
% /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTH
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/RFID-Cloner
flash
% /home/runner/Arduino/libraries/MFRC522/examples/RFID-Cloner
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWrite
flash
% /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWrite
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/ReadNUID
flash
% /home/runner/Arduino/libraries/MFRC522/examples/ReadNUID
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReader
flash
% /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReader
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/firmware_check
flash
% /home/runner/Arduino/libraries/MFRC522/examples/firmware_check
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keys
flash
% /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keys
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_data
flash
% /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_data
RAM for global variables
% /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_data
flash
% /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_data
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ConnectWithWEP
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ConnectWithWPA
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/FirmwareUpdater
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ScanNetworks
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiChatServer
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiPing
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiSSLClient
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiWebClient
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiWebServer
flash
% /tmp/compilesketches-x8m7y88_/install_from_repository-f6jtkezz/examples/WiFiWebServer
RAM for global variables
% libraries/SDU/examples/Usage
flash
% libraries/SDU/examples/Usage
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ConnectWithWEP
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ConnectWithWPA
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/FirmwareUpdater
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ScanNetworks
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiChatServer
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiPing
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiSSLClient
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiWebClient
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiWebServer
flash
% /tmp/compilesketches-pw4erpq0/install_from_repository-kzhczddt/examples/WiFiWebServer
RAM for global variables
% /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlus
flash
% /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlus
RAM for global variables
% /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernet
flash
% /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernet
RAM for global variables
% /home/runner/Arduino/libraries/Firmata/examples/StandardFirmata
flash
% /home/runner/Arduino/libraries/Firmata/examples/StandardFirmata
RAM for global variables
% /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmata
flash
% /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmata
RAM for global variables
% /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmata
flash
% /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmata
RAM for global variables
% /home/runner/Arduino/libraries/Firmata/examples/ServoFirmata
flash
% /home/runner/Arduino/libraries/Firmata/examples/ServoFirmata
RAM for global variables
% /home/runner/Arduino/libraries/Firmata/examples/EchoString
flash
% /home/runner/Arduino/libraries/Firmata/examples/EchoString
RAM for global variables
% /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmata
flash
% /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmata
RAM for global variables
% /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmata
flash
% /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmata
RAM for global variables
% libraries/I2S/examples/InputSerialPlotter
flash
% libraries/I2S/examples/InputSerialPlotter
RAM for global variables
% libraries/I2S/examples/SimpleTone
flash
% libraries/I2S/examples/SimpleTone
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ConnectWithWEP
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ConnectWithWPA
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/FirmwareUpdater
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ScanNetworks
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiChatServer
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiPing
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiSSLClient
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiWebClient
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiWebServer
flash
% /tmp/compilesketches-b7x2ex8b/install_from_repository-jht5fgxa/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ConnectWithWEP
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ConnectWithWPA
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/FirmwareUpdater
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ScanNetworks
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiChatServer
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiPing
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiSSLClient
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiWebClient
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiWebServer
flash
% /tmp/compilesketches-qnf8lv7q/install_from_repository-2lzwmo2_/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ConnectWithWEP
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ConnectWithWPA
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/FirmwareUpdater
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ScanNetworks
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiChatServer
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiPing
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiSSLClient
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiWebClient
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiWebServer
flash
% /tmp/compilesketches-o28d7loo/install_from_repository-mpsjrgdg/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ConnectWithWEP
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ConnectWithWPA
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/FirmwareUpdater
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ScanNetworks
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiChatServer
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiPing
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiSSLClient
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiWebClient
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiWebServer
flash
% /tmp/compilesketches-ye0aj5_n/install_from_repository-akul56yi/examples/WiFiWebServer
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/GPRSPing
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/GPRSPing
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/GPRSUdpNtpClient
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/GPRSUdpNtpClient
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/GsmLocation
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/GsmLocation
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/GsmSSLWebClient
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/GsmSSLWebClient
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/GsmWebClient
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/GsmWebClient
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/GsmWebServer
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/GsmWebServer
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/MakeVoiceCall
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/MakeVoiceCall
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/ReceiveSMS
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/ReceiveSMS
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/ReceiveVoiceCall
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/ReceiveVoiceCall
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/SSLCertificateManagement_Example
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/SSLCertificateManagement_Example
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/SendSMS
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/SendSMS
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/BandManagement
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/BandManagement
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/ChooseRadioAccessTechnology
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/ChooseRadioAccessTechnology
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/FileUtilsHttpDownload
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/FileUtilsHttpDownload
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/FileUtilsJsonFile
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/FileUtilsJsonFile
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/FileUtilsReadBlock
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/FileUtilsReadBlock
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/GsmScanNetworks
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/GsmScanNetworks
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/PinManagement
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/PinManagement
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/SerialGSMPassthrough
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/SerialGSMPassthrough
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/TestGPRS
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/TestGPRS
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/TestModem
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/TestModem
RAM for global variables
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/TestWebServer
flash
% /home/runner/Arduino/libraries/MKRGSM/examples/Tools/TestWebServer
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ConnectWithWEP
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ConnectWithWPA
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/FirmwareUpdater
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ScanNetworks
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiChatServer
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiPing
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiSSLClient
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiWebClient
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiWebServer
flash
% /tmp/compilesketches-p0k7f5xm/install_from_repository-08ijk9k5/examples/WiFiWebServer
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClient
flash
% /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClient
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClient
flash
% /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClient
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/NBWebClient
flash
% /home/runner/Arduino/libraries/MKRNB/examples/NBWebClient
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMS
flash
% /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMS
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/SendSMS
flash
% /home/runner/Arduino/libraries/MKRNB/examples/SendSMS
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnology
flash
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnology
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworks
flash
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworks
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagement
flash
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagement
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthrough
flash
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthrough
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRS
flash
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRS
RAM for global variables
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModem
flash
% /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModem
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ConnectWithWEP
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ConnectWithWPA
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/FirmwareUpdater
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ScanNetworks
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiChatServer
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiPing
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiSSLClient
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiWebClient
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiWebServer
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ec_q3hrw/examples/WiFiWebServer
RAM for global variables
% libraries/SAMD_BootloaderUpdater/examples/UpdateBootloader
flash
% libraries/SAMD_BootloaderUpdater/examples/UpdateBootloader
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ak716f6_/examples/VidorEncoder
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ak716f6_/examples/VidorEncoder
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ak716f6_/examples/VidorNeopixelRainbowStrips
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ak716f6_/examples/VidorNeopixelRainbowStrips
RAM for global variables
% /tmp/compilesketches-i05xdav8/install_from_repository-ak716f6_/examples/VidorTestSketch
flash
% /tmp/compilesketches-i05xdav8/install_from_repository-ak716f6_/examples/VidorTestSketch
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ConnectWithWEP
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ConnectWithWPA
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/FirmwareUpdater
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ScanNetworks
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiChatServer
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiPing
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiSSLClient
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiWebClient
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiWebServer
flash
% /tmp/compilesketches-as93tabc/install_from_repository-p7dam06v/examples/WiFiWebServer
RAM for global variables
% /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSender
flash
% /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSender
RAM for global variables
% /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridge
flash
% /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridge
RAM for global variables
% /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfiguration
flash
% /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfiguration
RAM for global variables
% /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceive
flash
% /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceive
RAM for global variables
% /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standalone
flash
% /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standalone
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ConnectWithWEP
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ConnectWithWPA
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/FirmwareUpdater
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ScanNetworks
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiChatServer
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiPing
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiSSLClient
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiWebClient
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiWebServer
flash
% /tmp/compilesketches-15aepqsv/install_from_repository-joz6r1x7/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ConnectWithWEP
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ConnectWithWPA
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/FirmwareUpdater
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ScanNetworks
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiChatServer
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiPing
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiSSLClient
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiWebClient
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiWebServer
flash
% /tmp/compilesketches-a5whxkmi/install_from_repository-z92m5qjf/examples/WiFiWebServer
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServer
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServer
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryption
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryption
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEP
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEP
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterprise
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterprise
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworks
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworks
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvanced
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvanced
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFi
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFi
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersion
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersion
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdater
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdater
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthrough
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthrough
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServer
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServer
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPing
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPing
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClient
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClient
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorage
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorage
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClient
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClient
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveString
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveString
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClient
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClient
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeating
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeating
RAM for global variables
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServer
flash
% /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ConnectWithWEP
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ConnectWithWPA
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/FirmwareUpdater
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ScanNetworks
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiChatServer
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiPing
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiSSLClient
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiWebClient
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiWebServer
flash
% /tmp/compilesketches-8vlwtyw8/install_from_repository-yc5y1rpm/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ConnectWithWEP
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ConnectWithWPA
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/FirmwareUpdater
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ScanNetworks
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiChatServer
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiPing
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiSSLClient
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiWebClient
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiWebServer
flash
% /tmp/compilesketches-kcji3ze0/install_from_repository-kz3nkbpv/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ConnectWithWEP
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ConnectWithWPA
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/FirmwareUpdater
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ScanNetworks
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiChatServer
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiPing
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiSSLClient
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiWebClient
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiWebServer
flash
% /tmp/compilesketches-xgr_yzja/install_from_repository-5q568r89/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ConnectWithWEP
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ConnectWithWPA
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/FirmwareUpdater
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ScanNetworks
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiChatServer
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiPing
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiSSLClient
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiWebClient
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiWebServer
flash
% /tmp/compilesketches-xafmt6ee/install_from_repository-s1wqbmgy/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ConnectWithWEP
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ConnectWithWPA
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/FirmwareUpdater
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ScanNetworks
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiChatServer
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiPing
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiSSLClient
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiWebClient
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiWebServer
flash
% /tmp/compilesketches-w47s3_n1/install_from_repository-91thd9yz/examples/WiFiWebServer
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/AP_SimpleWebServer
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/AP_SimpleWebServer
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/CheckWifi101FirmwareVersion
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/CheckWifi101FirmwareVersion
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ConnectNoEncryption
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ConnectNoEncryption
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ConnectWithWEP
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ConnectWithWEP
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ConnectWithWPA
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ConnectWithWPA
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/FirmwareUpdater
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/FirmwareUpdater
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/MDNS_WiFiWebServer
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/MDNS_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/Provisioning_WiFiWebServer
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/Provisioning_WiFiWebServer
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ScanNetworks
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ScanNetworks
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ScanNetworksAdvanced
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/ScanNetworksAdvanced
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/SimpleWebServerWiFi
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/SimpleWebServerWiFi
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiChatServer
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiChatServer
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiPing
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiPing
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiSSLClient
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiSSLClient
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiUdpNtpClient
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiUdpNtpClient
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiUdpSendReceiveString
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiUdpSendReceiveString
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiWebClient
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiWebClient
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiWebClientRepeating
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiWebClientRepeating
RAM for global variables
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiWebServer
flash
% /tmp/compilesketches-u5guc9l7/install_from_repository-59jo78__/examples/WiFiWebServer
RAM for global variables
%
arduino:samd:adafruit_circuitplayground_m0 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01
arduino:samd:arduino_zero_edbg 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 32 0.01 -4 -0.01 56 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 52 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 40 0.02 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04
arduino:samd:arduino_zero_native 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 56 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 52 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 40 0.02 -4 -0.01
arduino:samd:mkr1000 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 52 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 48 0.02 12 0.04 56 0.02 12 0.04 40 0.02 -4 -0.01
arduino:samd:mkrfox1200 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 40 0.02 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 52 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 56 0.02 12 0.04 48 0.02 12 0.04 32 0.01 -4 -0.01
arduino:samd:mkrgsm1400 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 32 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 56 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 36 0.01 -4 -0.01 48 0.02 12 0.04 56 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 40 0.02 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 56 0.02 12 0.04 56 0.02 12 0.04 40 0.02 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 56 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 48 0.02 12 0.04 32 0.01 -4 -0.01 40 0.02 -4 -0.01 32 0.01 -4 -0.01 40 0.02 -4 -0.01 56 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 32 0.01 -4 -0.01 40 0.02 -4 -0.01 56 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 40 0.02 -4 -0.01 52 0.02 12 0.04 56 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01
arduino:samd:mkrnb1500 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 32 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 56 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 36 0.01 -4 -0.01 48 0.02 12 0.04 56 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 40 0.02 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 56 0.02 12 0.04 56 0.02 12 0.04 40 0.02 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 32 0.01 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 52 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04
arduino:samd:mkrvidor4000 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 52 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 56 0.02 12 0.04 48 0.02 12 0.04 32 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01
arduino:samd:mkrwan1300 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 40 0.02 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 52 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 56 0.02 12 0.04 48 0.02 12 0.04 32 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 32 0.01 -4 -0.01
arduino:samd:mkrwan1310 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 40 0.02 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 40 0.02 -4 -0.01 40 0.02 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 52 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 56 0.02 12 0.04 48 0.02 12 0.04 32 0.01 -4 -0.01
arduino:samd:mkrwifi1010 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 32 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 48 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 48 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 40 0.02 -4 -0.01 40 0.02 -4 -0.01 36 0.01 -4 -0.01 56 0.02 12 0.04 48 0.02 12 0.04 40 0.02 -4 -0.01 40 0.02 -4 -0.01 40 0.02 -4 -0.01 32 0.01 -4 -0.01 40 0.02 -4 -0.01 40 0.02 -4 -0.01 48 0.02 12 0.04 48 0.02 12 0.04 32 0.01 -4 -0.01 40 0.02 -4 -0.01 40 0.02 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01
arduino:samd:mkrzero 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 32 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 36 0.01 -4 -0.01 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 52 0.02 12 0.04 32 0.01 -4 -0.01 56 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 52 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 48 0.02 12 0.04 56 0.02 12 0.04 56 0.02 12 0.04 32 0.01 -4 -0.01 32 0.01 -4 -0.01 48 0.02 12 0.04 56 0.02 12 0.04 40 0.02 -4 -0.01
arduino:samd:mzero_bl 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01
arduino:samd:mzero_pro_bl 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01
arduino:samd:mzero_pro_bl_dbg 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01
arduino:samd:nano_33_iot 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01
arduino:samd:tian 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 44 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 44 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01 40 0.02 4 0.01 48 0.02 4 0.01 48 0.02 4 0.01 40 0.02 4 0.01

@matthijskooijman
Copy link
Collaborator Author

Below is the sketch I used to test this. It just allocates various types of memory using operator new, including some allocations that would overwrite the stack, or even extend past the end of RAM so must fail. There is a bit of disabled code at the end that checks non-no-throw do not return null on failure, but that's a different issue that I'll try to discuss separately later, but I included the test code just FYI.

#include <new>

constexpr size_t s = 8000;
constexpr size_t s_fail = 65000;

struct foo {
  char bar[s];
};

struct foo_fail {
  char bar[s_fail];
};

struct C {
  int v;
  C() : v (1234) { Serial.println("    constructor"); Serial.flush(); }
  ~C() { Serial.println("    destructor"); Serial.flush(); }
};

void setup() {
  Serial.begin(115200);
  while (!Serial);
  Serial.println("Starting");
  Serial.flush();

  /***** nothrow new *****/
  Serial.println("Nothrow new");
  Serial.flush();

  {
    // put your setup code here, to run once:
    char *arr = new (std::nothrow) char[s];
    Serial.print("  arr=0x");
    Serial.print((uintptr_t)arr, HEX);
    Serial.println(" [Expected non-zero]");

    Serial.flush();
    delete[] arr;
  }
  {
    foo *f = new (std::nothrow) foo();
    Serial.print("  f=0x");
    Serial.print((uintptr_t)f, HEX);
    Serial.println(" [Expected non-zero]");
    Serial.flush();
    delete f;
  }
  {
    C *c = new (std::nothrow) C();
    Serial.print("  c=0x");
    Serial.print((uintptr_t)c, HEX);
    Serial.println(" [Expected non-zero]");
    if (c) {
      Serial.print("    c.v=");
      Serial.print(c->v);
      Serial.println(" [Expected 1234]");
    }
    Serial.flush();
    delete c;
  }

  /***** regular new *****/
  Serial.println("Regular new");
  Serial.flush();

  {
    char *arr = new char[s];
    Serial.print("  arr=0x");
    Serial.print((uintptr_t)arr, HEX);
    Serial.println(" [Expected non-zero]");
    Serial.flush();
    delete[] arr;
  }
  {
    foo *f = new foo;
    Serial.print("  f=0x");
    Serial.print((uintptr_t)f, HEX);
    Serial.println(" [Expected non-zero]");
    Serial.flush();
    delete f;
  }
  {
    C *c = new C();
    Serial.print("  c=0x");
    Serial.print((uintptr_t)c, HEX);
    Serial.println(" [Expected non-zero]");
    if (c) {
      Serial.print("    c.v=");
      Serial.print(c->v);
      Serial.println(" [Expected 1234]");
    }
    Serial.flush();
    delete c;
  }

  /***** placement (non-allocating) new *****/
  Serial.println("Placement new");
  Serial.flush();

  {
    char buf[sizeof(C)];

    C *c = new (buf) C();
    Serial.print("  c=0x");
    Serial.print((uintptr_t)c, HEX);
    Serial.println(" [Expected non-zero]");
    if (c) {
      Serial.print("    c.v=");
      Serial.print(c->v);
      Serial.println(" [Expected 1234]");
    }
    Serial.flush();
    c->~C();
  }

  /**** Stack margin test ****/
  Serial.println("Stack margin/overflow tests");
  Serial.flush();

  // End of global variables, defined by the linker, this is
  // SAMD-Arduino-core-specific
  extern char end;
  const size_t room = (char *)__get_MSP() - &end;
  const size_t margin = 64;

  {
    char *arr = new (std::nothrow) char[room - margin - 100];
    Serial.print("  arr=0x");
    Serial.print((uintptr_t)arr, HEX);
    Serial.println(" [Expected non-zero]");
    Serial.flush();
    delete[] arr;
  }

  // Note that (on cores where malloc/sbrk never fails) these might mess
  // up the heap a bit and make future malloc's hardfault for trying to
  // write *after* these free'd invalid allocations
  {
    char *arr_fail = new (std::nothrow) char[room - margin + 1];
    Serial.print("  arr_fail=0x");
    Serial.print((uintptr_t)arr_fail, HEX);
    Serial.println(" [Expected 0]");
    Serial.flush();
    delete[] arr_fail;
  }
  {
    char *arr_fail = new (std::nothrow) char[room + 1];
    Serial.print("  arr_fail=0x");
    Serial.print((uintptr_t)arr_fail, HEX);
    Serial.println(" [Expected 0]");
    Serial.flush();
    delete[] arr_fail;
  }

  /***** nothrow new failing *****/
  Serial.println("Failing allocations");
  Serial.flush();

  // On cores where malloc/sbrk never fails, this might lock up because
  // the heap is already a bit messed up (see above)
  {
    char *arr_fail = new (std::nothrow) char[s_fail];
    Serial.print("  arr_fail=0x");
    Serial.print((uintptr_t)arr_fail, HEX);
    Serial.println(" [Expected 0]");
    Serial.flush();
    delete[] arr_fail;
  }

  // On cores where malloc/sbrk never fails, this will lock up because
  // the allocated memory is zero'd.
  {
    foo_fail *f_fail = new (std::nothrow) foo_fail();
    Serial.print("  f_fail=0x");
    Serial.print((uintptr_t)f_fail, HEX);
    Serial.println(" [Expected 0]");
    Serial.flush();
    delete f_fail;
  }

  # if 0
  // Disabled for now, since most Arduino cores override regular new
  // with a non-aborting version that returns null, which is not
  // standards-compliant, but also breaks struct allocation (which tries
  // to zero out the null pointer and crashes).
  // Reverting to the default gcc operator new versions (that abort
  // instead of returning null) would be preferred, except that gcc
  // 9 and above have no working nothrow versions, so then there is no
  // way to do notrhow allocation at all, see
  // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106477)
  /***** regular new failing *****/

  Serial.print("Next allocation should abort, nothing else should be printed");
  Serial.flush();

  {
    char *arr_fail = new char[s_fail];
    Serial.print("  arr_fail=0x");
    Serial.print((uintptr_t)arr_fail, HEX);
    Serial.println(" [Expected to not return]");
    Serial.flush();
    delete[] arr_fail;
  }

  {
    foo_fail *f_fail = new foo_fail();
    Serial.print("  f=0x");
    Serial.print((uintptr_t)f_fail, HEX);
    Serial.println(" [Expected to not return]");
    Serial.flush();
    delete f_fail;
  }

  Serial.print("This should never print");
  Serial.flush();
  #endif
}

void loop() {}

void HardFault_Handler() {
  static bool printed = false;
  if (!printed) {
    Serial.println();
    Serial.println("HARDFAULT [only printed once]");
    Serial.println();
  }
  printed = true;
  // We return here so interrupts are re-enabled and the print can
  // actually be sent to the UART. Since hardfault has a fixed -1
  // priority, there seems no other way (until the serial code is fixed
  // to allow flushing with interrupts disabled:
  // https://github.com/arduino/ArduinoCore-samd/issues/472)
  //
  // Returning here does mean the code continues and likely triggers
  // a ton more hardfaults.
}

With the PR applied, output is as it should be:

Starting
Nothrow new
  arr=0x20000BC0 [Expected non-zero]
  f=0x20000BC0 [Expected non-zero]
    constructor
  c=0x20002AF8 [Expected non-zero]
    c.v=1234 [Expected 1234]
    destructor
Regular new
  arr=0x20000BC0 [Expected non-zero]
  f=0x20000BC0 [Expected non-zero]
    constructor
  c=0x20002AF8 [Expected non-zero]
    c.v=1234 [Expected 1234]
    destructor
Placement new
    constructor
  c=0x20007FCC [Expected non-zero]
    c.v=1234 [Expected 1234]
    destructor
Stack margin/overflow tests
  arr=0x0 [Expected non-zero]
  arr_fail=0x0 [Expected 0]
  arr_fail=0x0 [Expected 0]
Failing allocations
  arr_fail=0x0 [Expected 0]
  f_fail=0x0 [Expected 0]

Without the patch (samd 1.8.13 downloaded through board manager), this produces incorrect results for the last testcases:

Starting
Nothrow new
  arr=0x20000BB0 [Expected non-zero]
  f=0x20000BB0 [Expected non-zero]
    constructor
  c=0x20002AF0 [Expected non-zero]
    c.v=1234 [Expected 1234]
    destructor
Regular new
  arr=0x20000BB0 [Expected non-zero]
  f=0x20000BB0 [Expected non-zero]
    constructor
  c=0x20002AF0 [Expected non-zero]
    c.v=1234 [Expected 1234]
    destructor
Placement new
    constructor
  c=0x20007FCC [Expected non-zero]
    c.v=1234 [Expected 1234]
    destructor
Stack margin/overflow tests
  arr=0x20002AF8 [Expected non-zero]
  arr_fail=0x20002A90 [Expected 0]
  arr_fail=0x20002A50 [Expected 0]
Failing allocations

HARDFAULT [only printed once]

The hard fault is because, I think, the stack margin tests messed up the heap. If you disable those, the hard fault is delayed one testcase (but still occurs because the next allocation is a struct that is automatically zero'd, so the memset call generated by gcc ends up writing beyond the end of RAM).

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.

2 participants