Statup code: Fix zeroing of section .bss, improve initialization of .bss & .data sections
Zeroing of section .bss is now conditional on .bss start & end being defined rather than .data start & end being defined (this was likely a copy-pasta error when re-purposing code from the .data section above it to make the .bss piece). Also, the pointer jumps forward 4 bytes at a time now rather than one byte, given that pSrc and pDest are pointers to a uint32_t, meaning memory is written 4 bytes at a time. (Startup code by ARM written in assembly also does this.)
A bunch of processor architectures (especially the simple ones, like the M0 and M4) can only write int32 values to a memory address aligned at a 4-byte boundary, and int16 values aligned at a 2-byte boundary. If one writes C/C++ code not taking this into account, the compiler is forced to generate all sorts of shifts and tricks to make that code work, which is very sub-optimal code by every measure. (In this case sub-optimal means having every byte but the first and last three written 4 or more times over and some extra space in flash memory for the tricks.) If one were to do have written the initialization of .data and .bss as presented prior this patch in assembly (meaning the compiler not saves your ass by inserting shifts & tricks to your doing it per-byte) this would have been a HardFault on most Cortex CPUs due to the alignment requirement.
Memory usage change @ bdd0b63d7c1cb21745e095e0ad97c8d5f7edcf16
| Board | flash | % | RAM for global variables | % |
|---|---|---|---|---|
arduino:samd:adafruit_circuitplayground_m0 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:arduino_zero_edbg |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:arduino_zero_native |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkr1000 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrfox1200 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrnb1500 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrvidor4000 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrwan1300 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrwan1310 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrwifi1010 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrzero |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mzero_bl |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mzero_pro_bl |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mzero_pro_bl_dbg |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:nano_33_iot |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:tian |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
Click for full report table
| Board | extras/examples/01.Basics/AnalogReadSerialflash |
% | extras/examples/01.Basics/AnalogReadSerialRAM for global variables |
% | extras/examples/01.Basics/BareMinimumflash |
% | extras/examples/01.Basics/BareMinimumRAM for global variables |
% | extras/examples/01.Basics/Blinkflash |
% | extras/examples/01.Basics/BlinkRAM for global variables |
% | extras/examples/01.Basics/DigitalReadSerialflash |
% | extras/examples/01.Basics/DigitalReadSerialRAM for global variables |
% | extras/examples/01.Basics/Fadeflash |
% | extras/examples/01.Basics/FadeRAM for global variables |
% | extras/examples/01.Basics/ReadAnalogVoltageflash |
% | extras/examples/01.Basics/ReadAnalogVoltageRAM for global variables |
% | extras/examples/02.Digital/BlinkWithoutDelayflash |
% | extras/examples/02.Digital/BlinkWithoutDelayRAM for global variables |
% | extras/examples/02.Digital/Buttonflash |
% | extras/examples/02.Digital/ButtonRAM for global variables |
% | extras/examples/02.Digital/Debounceflash |
% | extras/examples/02.Digital/DebounceRAM for global variables |
% | extras/examples/02.Digital/DigitalInputPullupflash |
% | extras/examples/02.Digital/DigitalInputPullupRAM for global variables |
% | extras/examples/02.Digital/StateChangeDetectionflash |
% | extras/examples/02.Digital/StateChangeDetectionRAM for global variables |
% | extras/examples/02.Digital/toneKeyboardflash |
% | extras/examples/02.Digital/toneKeyboardRAM for global variables |
% | extras/examples/02.Digital/toneMelodyflash |
% | extras/examples/02.Digital/toneMelodyRAM for global variables |
% | extras/examples/02.Digital/toneMultipleflash |
% | extras/examples/02.Digital/toneMultipleRAM for global variables |
% | extras/examples/02.Digital/tonePitchFollowerflash |
% | extras/examples/02.Digital/tonePitchFollowerRAM for global variables |
% | extras/examples/03.Analog/AnalogInOutSerialflash |
% | extras/examples/03.Analog/AnalogInOutSerialRAM for global variables |
% | extras/examples/03.Analog/AnalogInputflash |
% | extras/examples/03.Analog/AnalogInputRAM for global variables |
% | extras/examples/03.Analog/AnalogWriteMegaflash |
% | extras/examples/03.Analog/AnalogWriteMegaRAM for global variables |
% | extras/examples/03.Analog/Calibrationflash |
% | extras/examples/03.Analog/CalibrationRAM for global variables |
% | extras/examples/03.Analog/Fadingflash |
% | extras/examples/03.Analog/FadingRAM for global variables |
% | extras/examples/03.Analog/Smoothingflash |
% | extras/examples/03.Analog/SmoothingRAM for global variables |
% | extras/examples/04.Communication/ASCIITableflash |
% | extras/examples/04.Communication/ASCIITableRAM for global variables |
% | extras/examples/04.Communication/Dimmerflash |
% | extras/examples/04.Communication/DimmerRAM for global variables |
% | extras/examples/04.Communication/Graphflash |
% | extras/examples/04.Communication/GraphRAM for global variables |
% | extras/examples/04.Communication/Midiflash |
% | extras/examples/04.Communication/MidiRAM for global variables |
% | extras/examples/04.Communication/MultiSerialflash |
% | extras/examples/04.Communication/MultiSerialRAM for global variables |
% | extras/examples/04.Communication/PhysicalPixelflash |
% | extras/examples/04.Communication/PhysicalPixelRAM for global variables |
% | extras/examples/04.Communication/ReadASCIIStringflash |
% | extras/examples/04.Communication/ReadASCIIStringRAM for global variables |
% | extras/examples/04.Communication/SerialCallResponseflash |
% | extras/examples/04.Communication/SerialCallResponseRAM for global variables |
% | extras/examples/04.Communication/SerialCallResponseASCIIflash |
% | extras/examples/04.Communication/SerialCallResponseASCIIRAM for global variables |
% | extras/examples/04.Communication/SerialEventflash |
% | extras/examples/04.Communication/SerialEventRAM for global variables |
% | extras/examples/04.Communication/SerialPassthroughflash |
% | extras/examples/04.Communication/SerialPassthroughRAM for global variables |
% | extras/examples/04.Communication/VirtualColorMixerflash |
% | extras/examples/04.Communication/VirtualColorMixerRAM for global variables |
% | extras/examples/05.Control/Arraysflash |
% | extras/examples/05.Control/ArraysRAM for global variables |
% | extras/examples/05.Control/ForLoopIterationflash |
% | extras/examples/05.Control/ForLoopIterationRAM for global variables |
% | extras/examples/05.Control/IfStatementConditionalflash |
% | extras/examples/05.Control/IfStatementConditionalRAM for global variables |
% | extras/examples/05.Control/WhileStatementConditionalflash |
% | extras/examples/05.Control/WhileStatementConditionalRAM for global variables |
% | extras/examples/05.Control/switchCaseflash |
% | extras/examples/05.Control/switchCaseRAM for global variables |
% | extras/examples/05.Control/switchCase2flash |
% | extras/examples/05.Control/switchCase2RAM for global variables |
% | extras/examples/06.Sensors/ADXL3xxflash |
% | extras/examples/06.Sensors/ADXL3xxRAM for global variables |
% | extras/examples/06.Sensors/Knockflash |
% | extras/examples/06.Sensors/KnockRAM for global variables |
% | extras/examples/06.Sensors/Memsic2125flash |
% | extras/examples/06.Sensors/Memsic2125RAM for global variables |
% | extras/examples/06.Sensors/Pingflash |
% | extras/examples/06.Sensors/PingRAM for global variables |
% | extras/examples/07.Display/RowColumnScanningflash |
% | extras/examples/07.Display/RowColumnScanningRAM for global variables |
% | extras/examples/07.Display/barGraphflash |
% | extras/examples/07.Display/barGraphRAM for global variables |
% | extras/examples/08.Strings/CharacterAnalysisflash |
% | extras/examples/08.Strings/CharacterAnalysisRAM for global variables |
% | extras/examples/08.Strings/StringAdditionOperatorflash |
% | extras/examples/08.Strings/StringAdditionOperatorRAM for global variables |
% | extras/examples/08.Strings/StringAppendOperatorflash |
% | extras/examples/08.Strings/StringAppendOperatorRAM for global variables |
% | extras/examples/08.Strings/StringCaseChangesflash |
% | extras/examples/08.Strings/StringCaseChangesRAM for global variables |
% | extras/examples/08.Strings/StringCharactersflash |
% | extras/examples/08.Strings/StringCharactersRAM for global variables |
% | extras/examples/08.Strings/StringComparisonOperatorsflash |
% | extras/examples/08.Strings/StringComparisonOperatorsRAM for global variables |
% | extras/examples/08.Strings/StringConstructorsflash |
% | extras/examples/08.Strings/StringConstructorsRAM for global variables |
% | extras/examples/08.Strings/StringIndexOfflash |
% | extras/examples/08.Strings/StringIndexOfRAM for global variables |
% | extras/examples/08.Strings/StringLengthflash |
% | extras/examples/08.Strings/StringLengthRAM for global variables |
% | extras/examples/08.Strings/StringLengthTrimflash |
% | extras/examples/08.Strings/StringLengthTrimRAM for global variables |
% | extras/examples/08.Strings/StringReplaceflash |
% | extras/examples/08.Strings/StringReplaceRAM for global variables |
% | extras/examples/08.Strings/StringStartsWithEndsWithflash |
% | extras/examples/08.Strings/StringStartsWithEndsWithRAM for global variables |
% | extras/examples/08.Strings/StringSubstringflash |
% | extras/examples/08.Strings/StringSubstringRAM for global variables |
% | extras/examples/08.Strings/StringToIntflash |
% | extras/examples/08.Strings/StringToIntRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardLogoutflash |
% | extras/examples/09.USB/Keyboard/KeyboardLogoutRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardMessageflash |
% | extras/examples/09.USB/Keyboard/KeyboardMessageRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardReprogramflash |
% | extras/examples/09.USB/Keyboard/KeyboardReprogramRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardSerialflash |
% | extras/examples/09.USB/Keyboard/KeyboardSerialRAM for global variables |
% | extras/examples/09.USB/KeyboardAndMouseControlflash |
% | extras/examples/09.USB/KeyboardAndMouseControlRAM for global variables |
% | extras/examples/09.USB/Mouse/ButtonMouseControlflash |
% | extras/examples/09.USB/Mouse/ButtonMouseControlRAM for global variables |
% | extras/examples/09.USB/Mouse/JoystickMouseControlflash |
% | extras/examples/09.USB/Mouse/JoystickMouseControlRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterfaceflash |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterfaceRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeterflash |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeterRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLampflash |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLampRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicatorflash |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicatorRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p06_LightThereminflash |
% | extras/examples/10.StarterKit_BasicKit/p06_LightThereminRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p07_Keyboardflash |
% | extras/examples/10.StarterKit_BasicKit/p07_KeyboardRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglassflash |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglassRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheelflash |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheelRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p10_Zoetropeflash |
% | extras/examples/10.StarterKit_BasicKit/p10_ZoetropeRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBallflash |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBallRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLockflash |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLockRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLampflash |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLampRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogoflash |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogoRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtonsflash |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtonsRAM for global variables |
% | extras/examples/11.ArduinoISP/ArduinoISPflash |
% | extras/examples/11.ArduinoISP/ArduinoISPRAM for global variables |
% | libraries/Wire/examples/SFRRanger_readerflash |
% | libraries/Wire/examples/SFRRanger_readerRAM for global variables |
% | libraries/Wire/examples/digital_potentiometerflash |
% | libraries/Wire/examples/digital_potentiometerRAM for global variables |
% | libraries/Wire/examples/master_readerflash |
% | libraries/Wire/examples/master_readerRAM for global variables |
% | libraries/Wire/examples/master_writerflash |
% | libraries/Wire/examples/master_writerRAM for global variables |
% | libraries/Wire/examples/slave_receiverflash |
% | libraries/Wire/examples/slave_receiverRAM for global variables |
% | libraries/Wire/examples/slave_senderflash |
% | libraries/Wire/examples/slave_senderRAM for global variables |
% | libraries/USBHost/examples/ADKTerminalTestflash |
% | libraries/USBHost/examples/ADKTerminalTestRAM for global variables |
% | libraries/USBHost/examples/KeyboardControllerflash |
% | libraries/USBHost/examples/KeyboardControllerRAM for global variables |
% | libraries/USBHost/examples/MouseControllerflash |
% | libraries/USBHost/examples/MouseControllerRAM for global variables |
% | libraries/USBHost/examples/USB_descflash |
% | libraries/USBHost/examples/USB_descRAM for global variables |
% | libraries/SPI/examples/BarometricPressureSensorflash |
% | libraries/SPI/examples/BarometricPressureSensorRAM for global variables |
% | libraries/SPI/examples/DigitalPotControlflash |
% | libraries/SPI/examples/DigitalPotControlRAM for global variables |
% | libraries/SFU/examples/SFU_LoadBinaryflash |
% | libraries/SFU/examples/SFU_LoadBinaryRAM for global variables |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponseflash |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponseRAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Knobflash |
% | /home/runner/Arduino/libraries/Servo/examples/KnobRAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Sweepflash |
% | /home/runner/Arduino/libraries/Servo/examples/SweepRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscrollflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/AutoscrollRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Blinkflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/BlinkRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursorflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CursorRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacterflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacterRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Displayflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/DisplayRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorldflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorldRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Scrollflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/ScrollRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplayflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplayRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirectionflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirectionRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursorflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursorRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinterflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinterRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatusflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatusRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClientflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClientRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveStringflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveStringRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClientflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeatingflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeatingRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServerRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/CardInfoflash |
% | /home/runner/Arduino/libraries/SD/examples/CardInfoRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Dataloggerflash |
% | /home/runner/Arduino/libraries/SD/examples/DataloggerRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/DumpFileflash |
% | /home/runner/Arduino/libraries/SD/examples/DumpFileRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Filesflash |
% | /home/runner/Arduino/libraries/SD/examples/FilesRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWriteflash |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWriteRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/ReadWriteflash |
% | /home/runner/Arduino/libraries/SD/examples/ReadWriteRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/listfilesflash |
% | /home/runner/Arduino/libraries/SD/examples/listfilesRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryptionflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryptionRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEPflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEPRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPAflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPARAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworksflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworksRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFiflash |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFiRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServerflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClientflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveStringflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeatingflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeatingRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServerflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometerflash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometerRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscopeflash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscopeRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometerflash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometerRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArrayflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArrayRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSinkflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSinkRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObjectflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObjectRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractorflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractorRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUIDflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUIDRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfoflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfoRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUIDflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUIDRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlockflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlockRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterruptflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterruptRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTHflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTHRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-Clonerflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-ClonerRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWriteflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWriteRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUIDflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUIDRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReaderflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReaderRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_checkflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_checkRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keysflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keysRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_dataflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_dataRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_dataflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_dataRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ScanNetworksflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiChatServerflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiPingflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebClientflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebServerflash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebServerRAM for global variables |
% | libraries/SDU/examples/Usageflash |
% | libraries/SDU/examples/UsageRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ScanNetworksflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiChatServerflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiPingflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebClientflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebServerflash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlusflash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlusRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernetflash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernetRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoStringflash |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoStringRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmataRAM for global variables |
% | libraries/I2S/examples/InputSerialPlotterflash |
% | libraries/I2S/examples/InputSerialPlotterRAM for global variables |
% | libraries/I2S/examples/SimpleToneflash |
% | libraries/I2S/examples/SimpleToneRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ScanNetworksflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiChatServerflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiPingflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebClientflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebServerflash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ScanNetworksflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiChatServerflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiPingflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebClientflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebServerflash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ScanNetworksflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiChatServerflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiPingflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebClientflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebServerflash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ScanNetworksflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiChatServerflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiPingflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebClientflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebServerflash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClientflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClientflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClientflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMSflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMSRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMSflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMSRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnologyflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnologyRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworksflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworksRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagementflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagementRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthroughflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthroughRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRSflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRSRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModemflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModemRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ScanNetworksflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiChatServerflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiPingflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebClientflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebServerflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebServerRAM for global variables |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloaderflash |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloaderRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorEncoderflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorEncoderRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorNeopixelRainbowStripsflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorNeopixelRainbowStripsRAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorTestSketchflash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorTestSketchRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ScanNetworksflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiChatServerflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiPingflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebClientflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebServerflash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSenderflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSenderRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridgeflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridgeRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfigurationflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfigurationRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceiveflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceiveRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standaloneflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standaloneRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ScanNetworksflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiChatServerflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiPingflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebClientflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebServerflash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ScanNetworksflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiChatServerflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiPingflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebClientflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebServerflash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServerflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryptionflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryptionRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEPflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEPRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPAflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPARAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterpriseflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2EnterpriseRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvancedflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvancedRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFiflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFiRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersionflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersionRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdaterflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdaterRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthroughflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthroughRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServerflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPingflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPingRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClientflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorageflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorageRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClientflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveStringflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeatingflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeatingRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServerflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ScanNetworksflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiChatServerflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiPingflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebClientflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebServerflash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ScanNetworksflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiChatServerflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiPingflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebClientflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebServerflash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ScanNetworksflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiChatServerflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiPingflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebClientflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebServerflash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ScanNetworksflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiChatServerflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiPingflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebClientflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebServerflash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ScanNetworksflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiChatServerflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiPingflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebClientflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebServerflash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ScanNetworksflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiChatServerflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiPingflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebClientflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebServerflash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebServerRAM for global variables |
% |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
arduino:samd:adafruit_circuitplayground_m0 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:arduino_zero_edbg |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:arduino_zero_native |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkr1000 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrfox1200 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrnb1500 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrvidor4000 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrwan1300 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrwan1310 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrwifi1010 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrzero |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mzero_bl |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mzero_pro_bl |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mzero_pro_bl_dbg |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:nano_33_iot |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:tian |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 |
Memory usage change @ e80e035f82a0f1c26c08738228ed2818fd958f75
| Board | flash | % | RAM for global variables | % |
|---|---|---|---|---|
arduino:samd:adafruit_circuitplayground_m0 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:arduino_zero_edbg |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:arduino_zero_native |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkr1000 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrfox1200 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrnb1500 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrvidor4000 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrwan1300 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrwan1310 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrwifi1010 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrzero |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mzero_bl |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mzero_pro_bl |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mzero_pro_bl_dbg |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:nano_33_iot |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:tian |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
Click for full report table
| Board | extras/examples/01.Basics/AnalogReadSerialflash |
% | extras/examples/01.Basics/AnalogReadSerialRAM for global variables |
% | extras/examples/01.Basics/BareMinimumflash |
% | extras/examples/01.Basics/BareMinimumRAM for global variables |
% | extras/examples/01.Basics/Blinkflash |
% | extras/examples/01.Basics/BlinkRAM for global variables |
% | extras/examples/01.Basics/DigitalReadSerialflash |
% | extras/examples/01.Basics/DigitalReadSerialRAM for global variables |
% | extras/examples/01.Basics/Fadeflash |
% | extras/examples/01.Basics/FadeRAM for global variables |
% | extras/examples/01.Basics/ReadAnalogVoltageflash |
% | extras/examples/01.Basics/ReadAnalogVoltageRAM for global variables |
% | extras/examples/02.Digital/BlinkWithoutDelayflash |
% | extras/examples/02.Digital/BlinkWithoutDelayRAM for global variables |
% | extras/examples/02.Digital/Buttonflash |
% | extras/examples/02.Digital/ButtonRAM for global variables |
% | extras/examples/02.Digital/Debounceflash |
% | extras/examples/02.Digital/DebounceRAM for global variables |
% | extras/examples/02.Digital/DigitalInputPullupflash |
% | extras/examples/02.Digital/DigitalInputPullupRAM for global variables |
% | extras/examples/02.Digital/StateChangeDetectionflash |
% | extras/examples/02.Digital/StateChangeDetectionRAM for global variables |
% | extras/examples/02.Digital/toneKeyboardflash |
% | extras/examples/02.Digital/toneKeyboardRAM for global variables |
% | extras/examples/02.Digital/toneMelodyflash |
% | extras/examples/02.Digital/toneMelodyRAM for global variables |
% | extras/examples/02.Digital/toneMultipleflash |
% | extras/examples/02.Digital/toneMultipleRAM for global variables |
% | extras/examples/02.Digital/tonePitchFollowerflash |
% | extras/examples/02.Digital/tonePitchFollowerRAM for global variables |
% | extras/examples/03.Analog/AnalogInOutSerialflash |
% | extras/examples/03.Analog/AnalogInOutSerialRAM for global variables |
% | extras/examples/03.Analog/AnalogInputflash |
% | extras/examples/03.Analog/AnalogInputRAM for global variables |
% | extras/examples/03.Analog/AnalogWriteMegaflash |
% | extras/examples/03.Analog/AnalogWriteMegaRAM for global variables |
% | extras/examples/03.Analog/Calibrationflash |
% | extras/examples/03.Analog/CalibrationRAM for global variables |
% | extras/examples/03.Analog/Fadingflash |
% | extras/examples/03.Analog/FadingRAM for global variables |
% | extras/examples/03.Analog/Smoothingflash |
% | extras/examples/03.Analog/SmoothingRAM for global variables |
% | extras/examples/04.Communication/ASCIITableflash |
% | extras/examples/04.Communication/ASCIITableRAM for global variables |
% | extras/examples/04.Communication/Dimmerflash |
% | extras/examples/04.Communication/DimmerRAM for global variables |
% | extras/examples/04.Communication/Graphflash |
% | extras/examples/04.Communication/GraphRAM for global variables |
% | extras/examples/04.Communication/Midiflash |
% | extras/examples/04.Communication/MidiRAM for global variables |
% | extras/examples/04.Communication/MultiSerialflash |
% | extras/examples/04.Communication/MultiSerialRAM for global variables |
% | extras/examples/04.Communication/PhysicalPixelflash |
% | extras/examples/04.Communication/PhysicalPixelRAM for global variables |
% | extras/examples/04.Communication/ReadASCIIStringflash |
% | extras/examples/04.Communication/ReadASCIIStringRAM for global variables |
% | extras/examples/04.Communication/SerialCallResponseflash |
% | extras/examples/04.Communication/SerialCallResponseRAM for global variables |
% | extras/examples/04.Communication/SerialCallResponseASCIIflash |
% | extras/examples/04.Communication/SerialCallResponseASCIIRAM for global variables |
% | extras/examples/04.Communication/SerialEventflash |
% | extras/examples/04.Communication/SerialEventRAM for global variables |
% | extras/examples/04.Communication/SerialPassthroughflash |
% | extras/examples/04.Communication/SerialPassthroughRAM for global variables |
% | extras/examples/04.Communication/VirtualColorMixerflash |
% | extras/examples/04.Communication/VirtualColorMixerRAM for global variables |
% | extras/examples/05.Control/Arraysflash |
% | extras/examples/05.Control/ArraysRAM for global variables |
% | extras/examples/05.Control/ForLoopIterationflash |
% | extras/examples/05.Control/ForLoopIterationRAM for global variables |
% | extras/examples/05.Control/IfStatementConditionalflash |
% | extras/examples/05.Control/IfStatementConditionalRAM for global variables |
% | extras/examples/05.Control/WhileStatementConditionalflash |
% | extras/examples/05.Control/WhileStatementConditionalRAM for global variables |
% | extras/examples/05.Control/switchCaseflash |
% | extras/examples/05.Control/switchCaseRAM for global variables |
% | extras/examples/05.Control/switchCase2flash |
% | extras/examples/05.Control/switchCase2RAM for global variables |
% | extras/examples/06.Sensors/ADXL3xxflash |
% | extras/examples/06.Sensors/ADXL3xxRAM for global variables |
% | extras/examples/06.Sensors/Knockflash |
% | extras/examples/06.Sensors/KnockRAM for global variables |
% | extras/examples/06.Sensors/Memsic2125flash |
% | extras/examples/06.Sensors/Memsic2125RAM for global variables |
% | extras/examples/06.Sensors/Pingflash |
% | extras/examples/06.Sensors/PingRAM for global variables |
% | extras/examples/07.Display/RowColumnScanningflash |
% | extras/examples/07.Display/RowColumnScanningRAM for global variables |
% | extras/examples/07.Display/barGraphflash |
% | extras/examples/07.Display/barGraphRAM for global variables |
% | extras/examples/08.Strings/CharacterAnalysisflash |
% | extras/examples/08.Strings/CharacterAnalysisRAM for global variables |
% | extras/examples/08.Strings/StringAdditionOperatorflash |
% | extras/examples/08.Strings/StringAdditionOperatorRAM for global variables |
% | extras/examples/08.Strings/StringAppendOperatorflash |
% | extras/examples/08.Strings/StringAppendOperatorRAM for global variables |
% | extras/examples/08.Strings/StringCaseChangesflash |
% | extras/examples/08.Strings/StringCaseChangesRAM for global variables |
% | extras/examples/08.Strings/StringCharactersflash |
% | extras/examples/08.Strings/StringCharactersRAM for global variables |
% | extras/examples/08.Strings/StringComparisonOperatorsflash |
% | extras/examples/08.Strings/StringComparisonOperatorsRAM for global variables |
% | extras/examples/08.Strings/StringConstructorsflash |
% | extras/examples/08.Strings/StringConstructorsRAM for global variables |
% | extras/examples/08.Strings/StringIndexOfflash |
% | extras/examples/08.Strings/StringIndexOfRAM for global variables |
% | extras/examples/08.Strings/StringLengthflash |
% | extras/examples/08.Strings/StringLengthRAM for global variables |
% | extras/examples/08.Strings/StringLengthTrimflash |
% | extras/examples/08.Strings/StringLengthTrimRAM for global variables |
% | extras/examples/08.Strings/StringReplaceflash |
% | extras/examples/08.Strings/StringReplaceRAM for global variables |
% | extras/examples/08.Strings/StringStartsWithEndsWithflash |
% | extras/examples/08.Strings/StringStartsWithEndsWithRAM for global variables |
% | extras/examples/08.Strings/StringSubstringflash |
% | extras/examples/08.Strings/StringSubstringRAM for global variables |
% | extras/examples/08.Strings/StringToIntflash |
% | extras/examples/08.Strings/StringToIntRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardLogoutflash |
% | extras/examples/09.USB/Keyboard/KeyboardLogoutRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardMessageflash |
% | extras/examples/09.USB/Keyboard/KeyboardMessageRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardReprogramflash |
% | extras/examples/09.USB/Keyboard/KeyboardReprogramRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardSerialflash |
% | extras/examples/09.USB/Keyboard/KeyboardSerialRAM for global variables |
% | extras/examples/09.USB/KeyboardAndMouseControlflash |
% | extras/examples/09.USB/KeyboardAndMouseControlRAM for global variables |
% | extras/examples/09.USB/Mouse/ButtonMouseControlflash |
% | extras/examples/09.USB/Mouse/ButtonMouseControlRAM for global variables |
% | extras/examples/09.USB/Mouse/JoystickMouseControlflash |
% | extras/examples/09.USB/Mouse/JoystickMouseControlRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterfaceflash |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterfaceRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeterflash |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeterRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLampflash |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLampRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicatorflash |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicatorRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p06_LightThereminflash |
% | extras/examples/10.StarterKit_BasicKit/p06_LightThereminRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p07_Keyboardflash |
% | extras/examples/10.StarterKit_BasicKit/p07_KeyboardRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglassflash |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglassRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheelflash |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheelRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p10_Zoetropeflash |
% | extras/examples/10.StarterKit_BasicKit/p10_ZoetropeRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBallflash |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBallRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLockflash |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLockRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLampflash |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLampRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogoflash |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogoRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtonsflash |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtonsRAM for global variables |
% | extras/examples/11.ArduinoISP/ArduinoISPflash |
% | extras/examples/11.ArduinoISP/ArduinoISPRAM for global variables |
% | libraries/Wire/examples/SFRRanger_readerflash |
% | libraries/Wire/examples/SFRRanger_readerRAM for global variables |
% | libraries/Wire/examples/digital_potentiometerflash |
% | libraries/Wire/examples/digital_potentiometerRAM for global variables |
% | libraries/Wire/examples/master_readerflash |
% | libraries/Wire/examples/master_readerRAM for global variables |
% | libraries/Wire/examples/master_writerflash |
% | libraries/Wire/examples/master_writerRAM for global variables |
% | libraries/Wire/examples/slave_receiverflash |
% | libraries/Wire/examples/slave_receiverRAM for global variables |
% | libraries/Wire/examples/slave_senderflash |
% | libraries/Wire/examples/slave_senderRAM for global variables |
% | libraries/USBHost/examples/ADKTerminalTestflash |
% | libraries/USBHost/examples/ADKTerminalTestRAM for global variables |
% | libraries/USBHost/examples/KeyboardControllerflash |
% | libraries/USBHost/examples/KeyboardControllerRAM for global variables |
% | libraries/USBHost/examples/MouseControllerflash |
% | libraries/USBHost/examples/MouseControllerRAM for global variables |
% | libraries/USBHost/examples/USB_descflash |
% | libraries/USBHost/examples/USB_descRAM for global variables |
% | libraries/SPI/examples/BarometricPressureSensorflash |
% | libraries/SPI/examples/BarometricPressureSensorRAM for global variables |
% | libraries/SPI/examples/DigitalPotControlflash |
% | libraries/SPI/examples/DigitalPotControlRAM for global variables |
% | libraries/SFU/examples/SFU_LoadBinaryflash |
% | libraries/SFU/examples/SFU_LoadBinaryRAM for global variables |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponseflash |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponseRAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Knobflash |
% | /home/runner/Arduino/libraries/Servo/examples/KnobRAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Sweepflash |
% | /home/runner/Arduino/libraries/Servo/examples/SweepRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscrollflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/AutoscrollRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Blinkflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/BlinkRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursorflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CursorRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacterflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacterRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Displayflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/DisplayRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorldflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorldRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Scrollflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/ScrollRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplayflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplayRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirectionflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirectionRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursorflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursorRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinterflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinterRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatusflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatusRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClientflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClientRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveStringflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveStringRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClientflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeatingflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeatingRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServerRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/CardInfoflash |
% | /home/runner/Arduino/libraries/SD/examples/CardInfoRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Dataloggerflash |
% | /home/runner/Arduino/libraries/SD/examples/DataloggerRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/DumpFileflash |
% | /home/runner/Arduino/libraries/SD/examples/DumpFileRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Filesflash |
% | /home/runner/Arduino/libraries/SD/examples/FilesRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWriteflash |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWriteRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/ReadWriteflash |
% | /home/runner/Arduino/libraries/SD/examples/ReadWriteRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/listfilesflash |
% | /home/runner/Arduino/libraries/SD/examples/listfilesRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryptionflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryptionRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEPflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEPRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPAflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPARAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworksflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworksRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFiflash |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFiRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServerflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClientflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveStringflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeatingflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeatingRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServerflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometerflash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometerRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscopeflash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscopeRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometerflash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometerRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArrayflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArrayRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSinkflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSinkRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObjectflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObjectRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractorflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractorRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUIDflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUIDRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfoflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfoRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUIDflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUIDRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlockflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlockRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterruptflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterruptRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTHflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTHRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-Clonerflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-ClonerRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWriteflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWriteRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUIDflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUIDRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReaderflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReaderRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_checkflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_checkRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keysflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keysRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_dataflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_dataRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_dataflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_dataRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ScanNetworksflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiChatServerflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiPingflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebClientflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebServerflash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebServerRAM for global variables |
% | libraries/SDU/examples/Usageflash |
% | libraries/SDU/examples/UsageRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ScanNetworksflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiChatServerflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiPingflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebClientflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebServerflash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlusflash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlusRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernetflash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernetRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoStringflash |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoStringRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmataRAM for global variables |
% | libraries/I2S/examples/InputSerialPlotterflash |
% | libraries/I2S/examples/InputSerialPlotterRAM for global variables |
% | libraries/I2S/examples/SimpleToneflash |
% | libraries/I2S/examples/SimpleToneRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ScanNetworksflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiChatServerflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiPingflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebClientflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebServerflash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ScanNetworksflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiChatServerflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiPingflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebClientflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebServerflash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ScanNetworksflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiChatServerflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiPingflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebClientflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebServerflash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ScanNetworksflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiChatServerflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiPingflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebClientflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebServerflash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClientflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClientflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClientflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMSflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMSRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMSflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMSRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnologyflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnologyRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworksflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworksRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagementflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagementRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthroughflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthroughRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRSflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRSRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModemflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModemRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ScanNetworksflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiChatServerflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiPingflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebClientflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebServerflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebServerRAM for global variables |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloaderflash |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloaderRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorEncoderflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorEncoderRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorNeopixelRainbowStripsflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorNeopixelRainbowStripsRAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorTestSketchflash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorTestSketchRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ScanNetworksflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiChatServerflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiPingflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebClientflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebServerflash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSenderflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSenderRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridgeflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridgeRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfigurationflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfigurationRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceiveflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceiveRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standaloneflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standaloneRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ScanNetworksflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiChatServerflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiPingflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebClientflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebServerflash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ScanNetworksflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiChatServerflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiPingflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebClientflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebServerflash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServerflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryptionflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryptionRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEPflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEPRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPAflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPARAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterpriseflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2EnterpriseRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvancedflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvancedRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFiflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFiRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersionflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersionRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdaterflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdaterRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthroughflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthroughRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServerflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPingflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPingRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClientflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorageflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorageRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClientflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveStringflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeatingflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeatingRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServerflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ScanNetworksflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiChatServerflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiPingflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebClientflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebServerflash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ScanNetworksflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiChatServerflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiPingflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebClientflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebServerflash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ScanNetworksflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiChatServerflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiPingflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebClientflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebServerflash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ScanNetworksflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiChatServerflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiPingflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebClientflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebServerflash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ScanNetworksflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiChatServerflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiPingflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebClientflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebServerflash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ScanNetworksflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiChatServerflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiPingflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebClientflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebServerflash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebServerRAM for global variables |
% |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
arduino:samd:adafruit_circuitplayground_m0 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:arduino_zero_edbg |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:arduino_zero_native |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkr1000 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrfox1200 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrnb1500 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrvidor4000 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrwan1300 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrwan1310 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrwifi1010 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrzero |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mzero_bl |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mzero_pro_bl |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mzero_pro_bl_dbg |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:nano_33_iot |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:tian |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 |
Memory usage change @ 433199681d2a849ed4f176fcf405bf1544e79297
| Board | flash | % | RAM for global variables | % |
|---|---|---|---|---|
arduino:samd:adafruit_circuitplayground_m0 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:arduino_zero_edbg |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:arduino_zero_native |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkr1000 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrfox1200 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrnb1500 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrvidor4000 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrwan1300 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrwan1310 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrwifi1010 |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mkrzero |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mzero_bl |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mzero_pro_bl |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:mzero_pro_bl_dbg |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:nano_33_iot |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
arduino:samd:tian |
0 - 0 | 0.0 - 0.0 | 0 - 0 | 0.0 - 0.0 |
Click for full report table
| Board | extras/examples/01.Basics/AnalogReadSerialflash |
% | extras/examples/01.Basics/AnalogReadSerialRAM for global variables |
% | extras/examples/01.Basics/BareMinimumflash |
% | extras/examples/01.Basics/BareMinimumRAM for global variables |
% | extras/examples/01.Basics/Blinkflash |
% | extras/examples/01.Basics/BlinkRAM for global variables |
% | extras/examples/01.Basics/DigitalReadSerialflash |
% | extras/examples/01.Basics/DigitalReadSerialRAM for global variables |
% | extras/examples/01.Basics/Fadeflash |
% | extras/examples/01.Basics/FadeRAM for global variables |
% | extras/examples/01.Basics/ReadAnalogVoltageflash |
% | extras/examples/01.Basics/ReadAnalogVoltageRAM for global variables |
% | extras/examples/02.Digital/BlinkWithoutDelayflash |
% | extras/examples/02.Digital/BlinkWithoutDelayRAM for global variables |
% | extras/examples/02.Digital/Buttonflash |
% | extras/examples/02.Digital/ButtonRAM for global variables |
% | extras/examples/02.Digital/Debounceflash |
% | extras/examples/02.Digital/DebounceRAM for global variables |
% | extras/examples/02.Digital/DigitalInputPullupflash |
% | extras/examples/02.Digital/DigitalInputPullupRAM for global variables |
% | extras/examples/02.Digital/StateChangeDetectionflash |
% | extras/examples/02.Digital/StateChangeDetectionRAM for global variables |
% | extras/examples/02.Digital/toneKeyboardflash |
% | extras/examples/02.Digital/toneKeyboardRAM for global variables |
% | extras/examples/02.Digital/toneMelodyflash |
% | extras/examples/02.Digital/toneMelodyRAM for global variables |
% | extras/examples/02.Digital/toneMultipleflash |
% | extras/examples/02.Digital/toneMultipleRAM for global variables |
% | extras/examples/02.Digital/tonePitchFollowerflash |
% | extras/examples/02.Digital/tonePitchFollowerRAM for global variables |
% | extras/examples/03.Analog/AnalogInOutSerialflash |
% | extras/examples/03.Analog/AnalogInOutSerialRAM for global variables |
% | extras/examples/03.Analog/AnalogInputflash |
% | extras/examples/03.Analog/AnalogInputRAM for global variables |
% | extras/examples/03.Analog/AnalogWriteMegaflash |
% | extras/examples/03.Analog/AnalogWriteMegaRAM for global variables |
% | extras/examples/03.Analog/Calibrationflash |
% | extras/examples/03.Analog/CalibrationRAM for global variables |
% | extras/examples/03.Analog/Fadingflash |
% | extras/examples/03.Analog/FadingRAM for global variables |
% | extras/examples/03.Analog/Smoothingflash |
% | extras/examples/03.Analog/SmoothingRAM for global variables |
% | extras/examples/04.Communication/ASCIITableflash |
% | extras/examples/04.Communication/ASCIITableRAM for global variables |
% | extras/examples/04.Communication/Dimmerflash |
% | extras/examples/04.Communication/DimmerRAM for global variables |
% | extras/examples/04.Communication/Graphflash |
% | extras/examples/04.Communication/GraphRAM for global variables |
% | extras/examples/04.Communication/Midiflash |
% | extras/examples/04.Communication/MidiRAM for global variables |
% | extras/examples/04.Communication/MultiSerialflash |
% | extras/examples/04.Communication/MultiSerialRAM for global variables |
% | extras/examples/04.Communication/PhysicalPixelflash |
% | extras/examples/04.Communication/PhysicalPixelRAM for global variables |
% | extras/examples/04.Communication/ReadASCIIStringflash |
% | extras/examples/04.Communication/ReadASCIIStringRAM for global variables |
% | extras/examples/04.Communication/SerialCallResponseflash |
% | extras/examples/04.Communication/SerialCallResponseRAM for global variables |
% | extras/examples/04.Communication/SerialCallResponseASCIIflash |
% | extras/examples/04.Communication/SerialCallResponseASCIIRAM for global variables |
% | extras/examples/04.Communication/SerialEventflash |
% | extras/examples/04.Communication/SerialEventRAM for global variables |
% | extras/examples/04.Communication/SerialPassthroughflash |
% | extras/examples/04.Communication/SerialPassthroughRAM for global variables |
% | extras/examples/04.Communication/VirtualColorMixerflash |
% | extras/examples/04.Communication/VirtualColorMixerRAM for global variables |
% | extras/examples/05.Control/Arraysflash |
% | extras/examples/05.Control/ArraysRAM for global variables |
% | extras/examples/05.Control/ForLoopIterationflash |
% | extras/examples/05.Control/ForLoopIterationRAM for global variables |
% | extras/examples/05.Control/IfStatementConditionalflash |
% | extras/examples/05.Control/IfStatementConditionalRAM for global variables |
% | extras/examples/05.Control/WhileStatementConditionalflash |
% | extras/examples/05.Control/WhileStatementConditionalRAM for global variables |
% | extras/examples/05.Control/switchCaseflash |
% | extras/examples/05.Control/switchCaseRAM for global variables |
% | extras/examples/05.Control/switchCase2flash |
% | extras/examples/05.Control/switchCase2RAM for global variables |
% | extras/examples/06.Sensors/ADXL3xxflash |
% | extras/examples/06.Sensors/ADXL3xxRAM for global variables |
% | extras/examples/06.Sensors/Knockflash |
% | extras/examples/06.Sensors/KnockRAM for global variables |
% | extras/examples/06.Sensors/Memsic2125flash |
% | extras/examples/06.Sensors/Memsic2125RAM for global variables |
% | extras/examples/06.Sensors/Pingflash |
% | extras/examples/06.Sensors/PingRAM for global variables |
% | extras/examples/07.Display/RowColumnScanningflash |
% | extras/examples/07.Display/RowColumnScanningRAM for global variables |
% | extras/examples/07.Display/barGraphflash |
% | extras/examples/07.Display/barGraphRAM for global variables |
% | extras/examples/08.Strings/CharacterAnalysisflash |
% | extras/examples/08.Strings/CharacterAnalysisRAM for global variables |
% | extras/examples/08.Strings/StringAdditionOperatorflash |
% | extras/examples/08.Strings/StringAdditionOperatorRAM for global variables |
% | extras/examples/08.Strings/StringAppendOperatorflash |
% | extras/examples/08.Strings/StringAppendOperatorRAM for global variables |
% | extras/examples/08.Strings/StringCaseChangesflash |
% | extras/examples/08.Strings/StringCaseChangesRAM for global variables |
% | extras/examples/08.Strings/StringCharactersflash |
% | extras/examples/08.Strings/StringCharactersRAM for global variables |
% | extras/examples/08.Strings/StringComparisonOperatorsflash |
% | extras/examples/08.Strings/StringComparisonOperatorsRAM for global variables |
% | extras/examples/08.Strings/StringConstructorsflash |
% | extras/examples/08.Strings/StringConstructorsRAM for global variables |
% | extras/examples/08.Strings/StringIndexOfflash |
% | extras/examples/08.Strings/StringIndexOfRAM for global variables |
% | extras/examples/08.Strings/StringLengthflash |
% | extras/examples/08.Strings/StringLengthRAM for global variables |
% | extras/examples/08.Strings/StringLengthTrimflash |
% | extras/examples/08.Strings/StringLengthTrimRAM for global variables |
% | extras/examples/08.Strings/StringReplaceflash |
% | extras/examples/08.Strings/StringReplaceRAM for global variables |
% | extras/examples/08.Strings/StringStartsWithEndsWithflash |
% | extras/examples/08.Strings/StringStartsWithEndsWithRAM for global variables |
% | extras/examples/08.Strings/StringSubstringflash |
% | extras/examples/08.Strings/StringSubstringRAM for global variables |
% | extras/examples/08.Strings/StringToIntflash |
% | extras/examples/08.Strings/StringToIntRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardLogoutflash |
% | extras/examples/09.USB/Keyboard/KeyboardLogoutRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardMessageflash |
% | extras/examples/09.USB/Keyboard/KeyboardMessageRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardReprogramflash |
% | extras/examples/09.USB/Keyboard/KeyboardReprogramRAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardSerialflash |
% | extras/examples/09.USB/Keyboard/KeyboardSerialRAM for global variables |
% | extras/examples/09.USB/KeyboardAndMouseControlflash |
% | extras/examples/09.USB/KeyboardAndMouseControlRAM for global variables |
% | extras/examples/09.USB/Mouse/ButtonMouseControlflash |
% | extras/examples/09.USB/Mouse/ButtonMouseControlRAM for global variables |
% | extras/examples/09.USB/Mouse/JoystickMouseControlflash |
% | extras/examples/09.USB/Mouse/JoystickMouseControlRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterfaceflash |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterfaceRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeterflash |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeterRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLampflash |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLampRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicatorflash |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicatorRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p06_LightThereminflash |
% | extras/examples/10.StarterKit_BasicKit/p06_LightThereminRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p07_Keyboardflash |
% | extras/examples/10.StarterKit_BasicKit/p07_KeyboardRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglassflash |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglassRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheelflash |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheelRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p10_Zoetropeflash |
% | extras/examples/10.StarterKit_BasicKit/p10_ZoetropeRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBallflash |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBallRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLockflash |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLockRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLampflash |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLampRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogoflash |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogoRAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtonsflash |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtonsRAM for global variables |
% | extras/examples/11.ArduinoISP/ArduinoISPflash |
% | extras/examples/11.ArduinoISP/ArduinoISPRAM for global variables |
% | libraries/Wire/examples/SFRRanger_readerflash |
% | libraries/Wire/examples/SFRRanger_readerRAM for global variables |
% | libraries/Wire/examples/digital_potentiometerflash |
% | libraries/Wire/examples/digital_potentiometerRAM for global variables |
% | libraries/Wire/examples/master_readerflash |
% | libraries/Wire/examples/master_readerRAM for global variables |
% | libraries/Wire/examples/master_writerflash |
% | libraries/Wire/examples/master_writerRAM for global variables |
% | libraries/Wire/examples/slave_receiverflash |
% | libraries/Wire/examples/slave_receiverRAM for global variables |
% | libraries/Wire/examples/slave_senderflash |
% | libraries/Wire/examples/slave_senderRAM for global variables |
% | libraries/USBHost/examples/ADKTerminalTestflash |
% | libraries/USBHost/examples/ADKTerminalTestRAM for global variables |
% | libraries/USBHost/examples/KeyboardControllerflash |
% | libraries/USBHost/examples/KeyboardControllerRAM for global variables |
% | libraries/USBHost/examples/MouseControllerflash |
% | libraries/USBHost/examples/MouseControllerRAM for global variables |
% | libraries/USBHost/examples/USB_descflash |
% | libraries/USBHost/examples/USB_descRAM for global variables |
% | libraries/SPI/examples/BarometricPressureSensorflash |
% | libraries/SPI/examples/BarometricPressureSensorRAM for global variables |
% | libraries/SPI/examples/DigitalPotControlflash |
% | libraries/SPI/examples/DigitalPotControlRAM for global variables |
% | libraries/SFU/examples/SFU_LoadBinaryflash |
% | libraries/SFU/examples/SFU_LoadBinaryRAM for global variables |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponseflash |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponseRAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Knobflash |
% | /home/runner/Arduino/libraries/Servo/examples/KnobRAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Sweepflash |
% | /home/runner/Arduino/libraries/Servo/examples/SweepRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscrollflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/AutoscrollRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Blinkflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/BlinkRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursorflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CursorRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacterflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacterRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Displayflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/DisplayRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorldflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorldRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Scrollflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/ScrollRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplayflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplayRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirectionflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirectionRAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursorflash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursorRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinterflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinterRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatusflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatusRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServerRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClientflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClientRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveStringflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveStringRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClientflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeatingflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeatingRAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServerflash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServerRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/CardInfoflash |
% | /home/runner/Arduino/libraries/SD/examples/CardInfoRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Dataloggerflash |
% | /home/runner/Arduino/libraries/SD/examples/DataloggerRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/DumpFileflash |
% | /home/runner/Arduino/libraries/SD/examples/DumpFileRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Filesflash |
% | /home/runner/Arduino/libraries/SD/examples/FilesRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWriteflash |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWriteRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/ReadWriteflash |
% | /home/runner/Arduino/libraries/SD/examples/ReadWriteRAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/listfilesflash |
% | /home/runner/Arduino/libraries/SD/examples/listfilesRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryptionflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryptionRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEPflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEPRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPAflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPARAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworksflash |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworksRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFiflash |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFiRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServerflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClientflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveStringflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeatingflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeatingRAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServerflash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometerflash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometerRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscopeflash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscopeRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometerflash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometerRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArrayflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArrayRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSinkflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSinkRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObjectflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObjectRAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractorflash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractorRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUIDflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUIDRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfoflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfoRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUIDflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUIDRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlockflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlockRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterruptflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterruptRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTHflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTHRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-Clonerflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-ClonerRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWriteflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWriteRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUIDflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUIDRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReaderflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReaderRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_checkflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_checkRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keysflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keysRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_dataflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_dataRAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_dataflash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_dataRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ScanNetworksflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiChatServerflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiPingflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebClientflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebServerflash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebServerRAM for global variables |
% | libraries/SDU/examples/Usageflash |
% | libraries/SDU/examples/UsageRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ScanNetworksflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiChatServerflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiPingflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebClientflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebServerflash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlusflash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlusRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernetflash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernetRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoStringflash |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoStringRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmataRAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmataflash |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmataRAM for global variables |
% | libraries/I2S/examples/InputSerialPlotterflash |
% | libraries/I2S/examples/InputSerialPlotterRAM for global variables |
% | libraries/I2S/examples/SimpleToneflash |
% | libraries/I2S/examples/SimpleToneRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ScanNetworksflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiChatServerflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiPingflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebClientflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebServerflash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ScanNetworksflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiChatServerflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiPingflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebClientflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebServerflash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ScanNetworksflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiChatServerflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiPingflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebClientflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebServerflash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ScanNetworksflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiChatServerflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiPingflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebClientflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebServerflash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClientflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClientflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClientflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMSflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMSRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMSflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMSRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnologyflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnologyRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworksflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworksRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagementflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagementRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthroughflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthroughRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRSflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRSRAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModemflash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModemRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ScanNetworksflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiChatServerflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiPingflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebClientflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebServerflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebServerRAM for global variables |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloaderflash |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloaderRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorEncoderflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorEncoderRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorNeopixelRainbowStripsflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorNeopixelRainbowStripsRAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorTestSketchflash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorTestSketchRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ScanNetworksflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiChatServerflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiPingflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebClientflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebServerflash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSenderflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSenderRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridgeflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridgeRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfigurationflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfigurationRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceiveflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceiveRAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standaloneflash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standaloneRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ScanNetworksflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiChatServerflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiPingflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebClientflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebServerflash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ScanNetworksflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiChatServerflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiPingflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebClientflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebServerflash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServerflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryptionflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryptionRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEPflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEPRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPAflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPARAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterpriseflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2EnterpriseRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvancedflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvancedRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFiflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFiRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersionflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersionRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdaterflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdaterRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthroughflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthroughRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServerflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServerRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPingflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPingRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClientflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorageflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorageRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClientflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveStringflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeatingflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeatingRAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServerflash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ScanNetworksflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiChatServerflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiPingflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebClientflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebServerflash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ScanNetworksflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiChatServerflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiPingflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebClientflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebServerflash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ScanNetworksflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiChatServerflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiPingflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebClientflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebServerflash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ScanNetworksflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiChatServerflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiPingflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebClientflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebServerflash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ScanNetworksflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiChatServerflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiPingflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebClientflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebServerflash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/AP_SimpleWebServerflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/AP_SimpleWebServerRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/CheckWifi101FirmwareVersionflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/CheckWifi101FirmwareVersionRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectNoEncryptionflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectNoEncryptionRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectWithWEPflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectWithWEPRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectWithWPAflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectWithWPARAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/FirmwareUpdaterflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/FirmwareUpdaterRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/MDNS_WiFiWebServerflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/MDNS_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/Provisioning_WiFiWebServerflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/Provisioning_WiFiWebServerRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ScanNetworksflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ScanNetworksRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ScanNetworksAdvancedflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ScanNetworksAdvancedRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/SimpleWebServerWiFiflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/SimpleWebServerWiFiRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiChatServerflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiChatServerRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiPingflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiPingRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiSSLClientflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiSSLClientRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiUdpNtpClientflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiUdpNtpClientRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiUdpSendReceiveStringflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiUdpSendReceiveStringRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebClientflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebClientRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebClientRepeatingflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebClientRepeatingRAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebServerflash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebServerRAM for global variables |
% |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
arduino:samd:adafruit_circuitplayground_m0 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:arduino_zero_edbg |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:arduino_zero_native |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkr1000 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrfox1200 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrnb1500 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrvidor4000 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrwan1300 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrwan1310 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrwifi1010 |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mkrzero |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mzero_bl |
N/A | N/A | N/A | N/A | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mzero_pro_bl |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:mzero_pro_bl_dbg |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | N/A | N/A | N/A | N/A | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:nano_33_iot |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arduino:samd:tian |
0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 | 0 | 0.0 |