ArduinoCore-samd
ArduinoCore-samd copied to clipboard
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/AnalogReadSerial flash |
% | extras/examples/01.Basics/AnalogReadSerial RAM for global variables |
% | extras/examples/01.Basics/BareMinimum flash |
% | extras/examples/01.Basics/BareMinimum RAM for global variables |
% | extras/examples/01.Basics/Blink flash |
% | extras/examples/01.Basics/Blink RAM for global variables |
% | extras/examples/01.Basics/DigitalReadSerial flash |
% | extras/examples/01.Basics/DigitalReadSerial RAM for global variables |
% | extras/examples/01.Basics/Fade flash |
% | extras/examples/01.Basics/Fade RAM for global variables |
% | extras/examples/01.Basics/ReadAnalogVoltage flash |
% | extras/examples/01.Basics/ReadAnalogVoltage RAM for global variables |
% | extras/examples/02.Digital/BlinkWithoutDelay flash |
% | extras/examples/02.Digital/BlinkWithoutDelay RAM for global variables |
% | extras/examples/02.Digital/Button flash |
% | extras/examples/02.Digital/Button RAM for global variables |
% | extras/examples/02.Digital/Debounce flash |
% | extras/examples/02.Digital/Debounce RAM for global variables |
% | extras/examples/02.Digital/DigitalInputPullup flash |
% | extras/examples/02.Digital/DigitalInputPullup RAM for global variables |
% | extras/examples/02.Digital/StateChangeDetection flash |
% | extras/examples/02.Digital/StateChangeDetection RAM for global variables |
% | extras/examples/02.Digital/toneKeyboard flash |
% | extras/examples/02.Digital/toneKeyboard RAM for global variables |
% | extras/examples/02.Digital/toneMelody flash |
% | extras/examples/02.Digital/toneMelody RAM for global variables |
% | extras/examples/02.Digital/toneMultiple flash |
% | extras/examples/02.Digital/toneMultiple RAM for global variables |
% | extras/examples/02.Digital/tonePitchFollower flash |
% | extras/examples/02.Digital/tonePitchFollower RAM for global variables |
% | extras/examples/03.Analog/AnalogInOutSerial flash |
% | extras/examples/03.Analog/AnalogInOutSerial RAM for global variables |
% | extras/examples/03.Analog/AnalogInput flash |
% | extras/examples/03.Analog/AnalogInput RAM for global variables |
% | extras/examples/03.Analog/AnalogWriteMega flash |
% | extras/examples/03.Analog/AnalogWriteMega RAM for global variables |
% | extras/examples/03.Analog/Calibration flash |
% | extras/examples/03.Analog/Calibration RAM for global variables |
% | extras/examples/03.Analog/Fading flash |
% | extras/examples/03.Analog/Fading RAM for global variables |
% | extras/examples/03.Analog/Smoothing flash |
% | extras/examples/03.Analog/Smoothing RAM for global variables |
% | extras/examples/04.Communication/ASCIITable flash |
% | extras/examples/04.Communication/ASCIITable RAM for global variables |
% | extras/examples/04.Communication/Dimmer flash |
% | extras/examples/04.Communication/Dimmer RAM for global variables |
% | extras/examples/04.Communication/Graph flash |
% | extras/examples/04.Communication/Graph RAM for global variables |
% | extras/examples/04.Communication/Midi flash |
% | extras/examples/04.Communication/Midi RAM for global variables |
% | extras/examples/04.Communication/MultiSerial flash |
% | extras/examples/04.Communication/MultiSerial RAM for global variables |
% | extras/examples/04.Communication/PhysicalPixel flash |
% | extras/examples/04.Communication/PhysicalPixel RAM for global variables |
% | extras/examples/04.Communication/ReadASCIIString flash |
% | extras/examples/04.Communication/ReadASCIIString RAM for global variables |
% | extras/examples/04.Communication/SerialCallResponse flash |
% | extras/examples/04.Communication/SerialCallResponse RAM for global variables |
% | extras/examples/04.Communication/SerialCallResponseASCII flash |
% | extras/examples/04.Communication/SerialCallResponseASCII RAM for global variables |
% | extras/examples/04.Communication/SerialEvent flash |
% | extras/examples/04.Communication/SerialEvent RAM for global variables |
% | extras/examples/04.Communication/SerialPassthrough flash |
% | extras/examples/04.Communication/SerialPassthrough RAM for global variables |
% | extras/examples/04.Communication/VirtualColorMixer flash |
% | extras/examples/04.Communication/VirtualColorMixer RAM for global variables |
% | extras/examples/05.Control/Arrays flash |
% | extras/examples/05.Control/Arrays RAM for global variables |
% | extras/examples/05.Control/ForLoopIteration flash |
% | extras/examples/05.Control/ForLoopIteration RAM for global variables |
% | extras/examples/05.Control/IfStatementConditional flash |
% | extras/examples/05.Control/IfStatementConditional RAM for global variables |
% | extras/examples/05.Control/WhileStatementConditional flash |
% | extras/examples/05.Control/WhileStatementConditional RAM for global variables |
% | extras/examples/05.Control/switchCase flash |
% | extras/examples/05.Control/switchCase RAM for global variables |
% | extras/examples/05.Control/switchCase2 flash |
% | extras/examples/05.Control/switchCase2 RAM for global variables |
% | extras/examples/06.Sensors/ADXL3xx flash |
% | extras/examples/06.Sensors/ADXL3xx RAM for global variables |
% | extras/examples/06.Sensors/Knock flash |
% | extras/examples/06.Sensors/Knock RAM for global variables |
% | extras/examples/06.Sensors/Memsic2125 flash |
% | extras/examples/06.Sensors/Memsic2125 RAM for global variables |
% | extras/examples/06.Sensors/Ping flash |
% | extras/examples/06.Sensors/Ping RAM for global variables |
% | extras/examples/07.Display/RowColumnScanning flash |
% | extras/examples/07.Display/RowColumnScanning RAM for global variables |
% | extras/examples/07.Display/barGraph flash |
% | extras/examples/07.Display/barGraph RAM for global variables |
% | extras/examples/08.Strings/CharacterAnalysis flash |
% | extras/examples/08.Strings/CharacterAnalysis RAM for global variables |
% | extras/examples/08.Strings/StringAdditionOperator flash |
% | extras/examples/08.Strings/StringAdditionOperator RAM for global variables |
% | extras/examples/08.Strings/StringAppendOperator flash |
% | extras/examples/08.Strings/StringAppendOperator RAM for global variables |
% | extras/examples/08.Strings/StringCaseChanges flash |
% | extras/examples/08.Strings/StringCaseChanges RAM for global variables |
% | extras/examples/08.Strings/StringCharacters flash |
% | extras/examples/08.Strings/StringCharacters RAM for global variables |
% | extras/examples/08.Strings/StringComparisonOperators flash |
% | extras/examples/08.Strings/StringComparisonOperators RAM for global variables |
% | extras/examples/08.Strings/StringConstructors flash |
% | extras/examples/08.Strings/StringConstructors RAM for global variables |
% | extras/examples/08.Strings/StringIndexOf flash |
% | extras/examples/08.Strings/StringIndexOf RAM for global variables |
% | extras/examples/08.Strings/StringLength flash |
% | extras/examples/08.Strings/StringLength RAM for global variables |
% | extras/examples/08.Strings/StringLengthTrim flash |
% | extras/examples/08.Strings/StringLengthTrim RAM for global variables |
% | extras/examples/08.Strings/StringReplace flash |
% | extras/examples/08.Strings/StringReplace RAM for global variables |
% | extras/examples/08.Strings/StringStartsWithEndsWith flash |
% | extras/examples/08.Strings/StringStartsWithEndsWith RAM for global variables |
% | extras/examples/08.Strings/StringSubstring flash |
% | extras/examples/08.Strings/StringSubstring RAM for global variables |
% | extras/examples/08.Strings/StringToInt flash |
% | extras/examples/08.Strings/StringToInt RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardLogout flash |
% | extras/examples/09.USB/Keyboard/KeyboardLogout RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardMessage flash |
% | extras/examples/09.USB/Keyboard/KeyboardMessage RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardReprogram flash |
% | extras/examples/09.USB/Keyboard/KeyboardReprogram RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardSerial flash |
% | extras/examples/09.USB/Keyboard/KeyboardSerial RAM for global variables |
% | extras/examples/09.USB/KeyboardAndMouseControl flash |
% | extras/examples/09.USB/KeyboardAndMouseControl RAM for global variables |
% | extras/examples/09.USB/Mouse/ButtonMouseControl flash |
% | extras/examples/09.USB/Mouse/ButtonMouseControl RAM for global variables |
% | extras/examples/09.USB/Mouse/JoystickMouseControl flash |
% | extras/examples/09.USB/Mouse/JoystickMouseControl RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterface flash |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterface RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeter flash |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeter RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLamp flash |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLamp RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicator flash |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicator RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p06_LightTheremin flash |
% | extras/examples/10.StarterKit_BasicKit/p06_LightTheremin RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p07_Keyboard flash |
% | extras/examples/10.StarterKit_BasicKit/p07_Keyboard RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglass flash |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglass RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheel flash |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheel RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p10_Zoetrope flash |
% | extras/examples/10.StarterKit_BasicKit/p10_Zoetrope RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBall flash |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBall RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLock flash |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLock RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLamp flash |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLamp RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogo flash |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogo RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtons flash |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtons RAM for global variables |
% | extras/examples/11.ArduinoISP/ArduinoISP flash |
% | extras/examples/11.ArduinoISP/ArduinoISP RAM for global variables |
% | libraries/Wire/examples/SFRRanger_reader flash |
% | libraries/Wire/examples/SFRRanger_reader RAM for global variables |
% | libraries/Wire/examples/digital_potentiometer flash |
% | libraries/Wire/examples/digital_potentiometer RAM for global variables |
% | libraries/Wire/examples/master_reader flash |
% | libraries/Wire/examples/master_reader RAM for global variables |
% | libraries/Wire/examples/master_writer flash |
% | libraries/Wire/examples/master_writer RAM for global variables |
% | libraries/Wire/examples/slave_receiver flash |
% | libraries/Wire/examples/slave_receiver RAM for global variables |
% | libraries/Wire/examples/slave_sender flash |
% | libraries/Wire/examples/slave_sender RAM for global variables |
% | libraries/USBHost/examples/ADKTerminalTest flash |
% | libraries/USBHost/examples/ADKTerminalTest RAM for global variables |
% | libraries/USBHost/examples/KeyboardController flash |
% | libraries/USBHost/examples/KeyboardController RAM for global variables |
% | libraries/USBHost/examples/MouseController flash |
% | libraries/USBHost/examples/MouseController RAM for global variables |
% | libraries/USBHost/examples/USB_desc flash |
% | libraries/USBHost/examples/USB_desc RAM for global variables |
% | libraries/SPI/examples/BarometricPressureSensor flash |
% | libraries/SPI/examples/BarometricPressureSensor RAM for global variables |
% | libraries/SPI/examples/DigitalPotControl flash |
% | libraries/SPI/examples/DigitalPotControl RAM for global variables |
% | libraries/SFU/examples/SFU_LoadBinary flash |
% | libraries/SFU/examples/SFU_LoadBinary RAM for global variables |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponse flash |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponse RAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Knob flash |
% | /home/runner/Arduino/libraries/Servo/examples/Knob RAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Sweep flash |
% | /home/runner/Arduino/libraries/Servo/examples/Sweep RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscroll flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscroll RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Blink flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Blink RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursor flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursor RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacter flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacter RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Display flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Display RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorld flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorld RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Scroll flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Scroll RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplay flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplay RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirection flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirection RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursor flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursor RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinter flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinter RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatus flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatus RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClient flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClient RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveString flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveString RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClient flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClient flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClient RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeating flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeating RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServer RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/CardInfo flash |
% | /home/runner/Arduino/libraries/SD/examples/CardInfo RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Datalogger flash |
% | /home/runner/Arduino/libraries/SD/examples/Datalogger RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/DumpFile flash |
% | /home/runner/Arduino/libraries/SD/examples/DumpFile RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Files flash |
% | /home/runner/Arduino/libraries/SD/examples/Files RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWrite flash |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWrite RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/ReadWrite flash |
% | /home/runner/Arduino/libraries/SD/examples/ReadWrite RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/listfiles flash |
% | /home/runner/Arduino/libraries/SD/examples/listfiles RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryption flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryption RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEP flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEP RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPA flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPA RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworks flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworks RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFi flash |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFi RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServer flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClient flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveString flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClient flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeating flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeating RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServer flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometer flash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometer RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscope flash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscope RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometer flash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometer RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArray flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArray RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSink flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSink RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObject flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObject RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractor flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractor RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUID flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUID RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfo flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfo RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUID flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUID RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlock flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlock RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterrupt flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterrupt RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTH flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTH RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-Cloner flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-Cloner RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWrite flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWrite RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUID flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUID RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReader flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReader RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_check flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_check RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keys flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keys RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_data flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_data RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_data flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_data RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ScanNetworks flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiChatServer flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiPing flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebClient flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebServer flash |
% | /tmp/compilesketches-_ks_2i5z/install_from_repository-6pb00v2d/examples/WiFiWebServer RAM for global variables |
% | libraries/SDU/examples/Usage flash |
% | libraries/SDU/examples/Usage RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ScanNetworks flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiChatServer flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiPing flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebClient flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebServer flash |
% | /tmp/compilesketches-aozffhma/install_from_repository-u2spkfp5/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlus flash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlus RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernet flash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernet RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoString flash |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoString RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmata RAM for global variables |
% | libraries/I2S/examples/InputSerialPlotter flash |
% | libraries/I2S/examples/InputSerialPlotter RAM for global variables |
% | libraries/I2S/examples/SimpleTone flash |
% | libraries/I2S/examples/SimpleTone RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ScanNetworks flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiChatServer flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiPing flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebClient flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebServer flash |
% | /tmp/compilesketches-s6yf_em3/install_from_repository-fs407678/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ScanNetworks flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiChatServer flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiPing flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebClient flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebServer flash |
% | /tmp/compilesketches-89hxnga_/install_from_repository-_ayadjhl/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ScanNetworks flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiChatServer flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiPing flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebClient flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebServer flash |
% | /tmp/compilesketches-ax6hvq5q/install_from_repository-zyxvobgq/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ScanNetworks flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiChatServer flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiPing flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebClient flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebServer flash |
% | /tmp/compilesketches-i_nzuzyp/install_from_repository-psr_f85h/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClient flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClient flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClient flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMS flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMS RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMS flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMS RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnology flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnology RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworks flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworks RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagement flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagement RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthrough flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthrough RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRS flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRS RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModem flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModem RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ScanNetworks flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiChatServer flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiPing flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebClient flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebServer flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-b9117phs/examples/WiFiWebServer RAM for global variables |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloader flash |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloader RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorEncoder flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorEncoder RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorNeopixelRainbowStrips flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorNeopixelRainbowStrips RAM for global variables |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorTestSketch flash |
% | /tmp/compilesketches-diua1gdg/install_from_repository-6eqfq6jg/examples/VidorTestSketch RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ScanNetworks flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiChatServer flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiPing flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebClient flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebServer flash |
% | /tmp/compilesketches-b6m8955_/install_from_repository-bv4b1p9k/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSender flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSender RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridge flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridge RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfiguration flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfiguration RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceive flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceive RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standalone flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standalone RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ScanNetworks flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiChatServer flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiPing flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebClient flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebServer flash |
% | /tmp/compilesketches-a6f4_v8y/install_from_repository-5u5g2_jq/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ScanNetworks flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiChatServer flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiPing flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebClient flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebServer flash |
% | /tmp/compilesketches-c89cojzq/install_from_repository-vw5k3wzc/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServer flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryption flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryption RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEP flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEP RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterprise flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterprise RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworks flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworks RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvanced flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvanced RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFi flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFi RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersion flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersion RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdater flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdater RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthrough flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthrough RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServer flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPing flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPing RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClient flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorage flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorage RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClient flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveString flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClient flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeating flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeating RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServer flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ScanNetworks flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiChatServer flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiPing flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebClient flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebServer flash |
% | /tmp/compilesketches-c539n2nm/install_from_repository-hzyktcuc/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ScanNetworks flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiChatServer flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiPing flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebClient flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebServer flash |
% | /tmp/compilesketches-odqrpv0q/install_from_repository-jk0b6gpd/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ScanNetworks flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiChatServer flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiPing flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebClient flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebServer flash |
% | /tmp/compilesketches-88symtkx/install_from_repository-_7lki_zo/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ScanNetworks flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiChatServer flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiPing flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebClient flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebServer flash |
% | /tmp/compilesketches-pibzo8r4/install_from_repository-ogxyqdai/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ScanNetworks flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiChatServer flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiPing flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebClient flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebServer flash |
% | /tmp/compilesketches-xtyu3lip/install_from_repository-7mv_watk/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ScanNetworks flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiChatServer flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiPing flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebClient flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebServer flash |
% | /tmp/compilesketches-to5uv1o8/install_from_repository-gzkkhkyi/examples/WiFiWebServer RAM 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/AnalogReadSerial flash |
% | extras/examples/01.Basics/AnalogReadSerial RAM for global variables |
% | extras/examples/01.Basics/BareMinimum flash |
% | extras/examples/01.Basics/BareMinimum RAM for global variables |
% | extras/examples/01.Basics/Blink flash |
% | extras/examples/01.Basics/Blink RAM for global variables |
% | extras/examples/01.Basics/DigitalReadSerial flash |
% | extras/examples/01.Basics/DigitalReadSerial RAM for global variables |
% | extras/examples/01.Basics/Fade flash |
% | extras/examples/01.Basics/Fade RAM for global variables |
% | extras/examples/01.Basics/ReadAnalogVoltage flash |
% | extras/examples/01.Basics/ReadAnalogVoltage RAM for global variables |
% | extras/examples/02.Digital/BlinkWithoutDelay flash |
% | extras/examples/02.Digital/BlinkWithoutDelay RAM for global variables |
% | extras/examples/02.Digital/Button flash |
% | extras/examples/02.Digital/Button RAM for global variables |
% | extras/examples/02.Digital/Debounce flash |
% | extras/examples/02.Digital/Debounce RAM for global variables |
% | extras/examples/02.Digital/DigitalInputPullup flash |
% | extras/examples/02.Digital/DigitalInputPullup RAM for global variables |
% | extras/examples/02.Digital/StateChangeDetection flash |
% | extras/examples/02.Digital/StateChangeDetection RAM for global variables |
% | extras/examples/02.Digital/toneKeyboard flash |
% | extras/examples/02.Digital/toneKeyboard RAM for global variables |
% | extras/examples/02.Digital/toneMelody flash |
% | extras/examples/02.Digital/toneMelody RAM for global variables |
% | extras/examples/02.Digital/toneMultiple flash |
% | extras/examples/02.Digital/toneMultiple RAM for global variables |
% | extras/examples/02.Digital/tonePitchFollower flash |
% | extras/examples/02.Digital/tonePitchFollower RAM for global variables |
% | extras/examples/03.Analog/AnalogInOutSerial flash |
% | extras/examples/03.Analog/AnalogInOutSerial RAM for global variables |
% | extras/examples/03.Analog/AnalogInput flash |
% | extras/examples/03.Analog/AnalogInput RAM for global variables |
% | extras/examples/03.Analog/AnalogWriteMega flash |
% | extras/examples/03.Analog/AnalogWriteMega RAM for global variables |
% | extras/examples/03.Analog/Calibration flash |
% | extras/examples/03.Analog/Calibration RAM for global variables |
% | extras/examples/03.Analog/Fading flash |
% | extras/examples/03.Analog/Fading RAM for global variables |
% | extras/examples/03.Analog/Smoothing flash |
% | extras/examples/03.Analog/Smoothing RAM for global variables |
% | extras/examples/04.Communication/ASCIITable flash |
% | extras/examples/04.Communication/ASCIITable RAM for global variables |
% | extras/examples/04.Communication/Dimmer flash |
% | extras/examples/04.Communication/Dimmer RAM for global variables |
% | extras/examples/04.Communication/Graph flash |
% | extras/examples/04.Communication/Graph RAM for global variables |
% | extras/examples/04.Communication/Midi flash |
% | extras/examples/04.Communication/Midi RAM for global variables |
% | extras/examples/04.Communication/MultiSerial flash |
% | extras/examples/04.Communication/MultiSerial RAM for global variables |
% | extras/examples/04.Communication/PhysicalPixel flash |
% | extras/examples/04.Communication/PhysicalPixel RAM for global variables |
% | extras/examples/04.Communication/ReadASCIIString flash |
% | extras/examples/04.Communication/ReadASCIIString RAM for global variables |
% | extras/examples/04.Communication/SerialCallResponse flash |
% | extras/examples/04.Communication/SerialCallResponse RAM for global variables |
% | extras/examples/04.Communication/SerialCallResponseASCII flash |
% | extras/examples/04.Communication/SerialCallResponseASCII RAM for global variables |
% | extras/examples/04.Communication/SerialEvent flash |
% | extras/examples/04.Communication/SerialEvent RAM for global variables |
% | extras/examples/04.Communication/SerialPassthrough flash |
% | extras/examples/04.Communication/SerialPassthrough RAM for global variables |
% | extras/examples/04.Communication/VirtualColorMixer flash |
% | extras/examples/04.Communication/VirtualColorMixer RAM for global variables |
% | extras/examples/05.Control/Arrays flash |
% | extras/examples/05.Control/Arrays RAM for global variables |
% | extras/examples/05.Control/ForLoopIteration flash |
% | extras/examples/05.Control/ForLoopIteration RAM for global variables |
% | extras/examples/05.Control/IfStatementConditional flash |
% | extras/examples/05.Control/IfStatementConditional RAM for global variables |
% | extras/examples/05.Control/WhileStatementConditional flash |
% | extras/examples/05.Control/WhileStatementConditional RAM for global variables |
% | extras/examples/05.Control/switchCase flash |
% | extras/examples/05.Control/switchCase RAM for global variables |
% | extras/examples/05.Control/switchCase2 flash |
% | extras/examples/05.Control/switchCase2 RAM for global variables |
% | extras/examples/06.Sensors/ADXL3xx flash |
% | extras/examples/06.Sensors/ADXL3xx RAM for global variables |
% | extras/examples/06.Sensors/Knock flash |
% | extras/examples/06.Sensors/Knock RAM for global variables |
% | extras/examples/06.Sensors/Memsic2125 flash |
% | extras/examples/06.Sensors/Memsic2125 RAM for global variables |
% | extras/examples/06.Sensors/Ping flash |
% | extras/examples/06.Sensors/Ping RAM for global variables |
% | extras/examples/07.Display/RowColumnScanning flash |
% | extras/examples/07.Display/RowColumnScanning RAM for global variables |
% | extras/examples/07.Display/barGraph flash |
% | extras/examples/07.Display/barGraph RAM for global variables |
% | extras/examples/08.Strings/CharacterAnalysis flash |
% | extras/examples/08.Strings/CharacterAnalysis RAM for global variables |
% | extras/examples/08.Strings/StringAdditionOperator flash |
% | extras/examples/08.Strings/StringAdditionOperator RAM for global variables |
% | extras/examples/08.Strings/StringAppendOperator flash |
% | extras/examples/08.Strings/StringAppendOperator RAM for global variables |
% | extras/examples/08.Strings/StringCaseChanges flash |
% | extras/examples/08.Strings/StringCaseChanges RAM for global variables |
% | extras/examples/08.Strings/StringCharacters flash |
% | extras/examples/08.Strings/StringCharacters RAM for global variables |
% | extras/examples/08.Strings/StringComparisonOperators flash |
% | extras/examples/08.Strings/StringComparisonOperators RAM for global variables |
% | extras/examples/08.Strings/StringConstructors flash |
% | extras/examples/08.Strings/StringConstructors RAM for global variables |
% | extras/examples/08.Strings/StringIndexOf flash |
% | extras/examples/08.Strings/StringIndexOf RAM for global variables |
% | extras/examples/08.Strings/StringLength flash |
% | extras/examples/08.Strings/StringLength RAM for global variables |
% | extras/examples/08.Strings/StringLengthTrim flash |
% | extras/examples/08.Strings/StringLengthTrim RAM for global variables |
% | extras/examples/08.Strings/StringReplace flash |
% | extras/examples/08.Strings/StringReplace RAM for global variables |
% | extras/examples/08.Strings/StringStartsWithEndsWith flash |
% | extras/examples/08.Strings/StringStartsWithEndsWith RAM for global variables |
% | extras/examples/08.Strings/StringSubstring flash |
% | extras/examples/08.Strings/StringSubstring RAM for global variables |
% | extras/examples/08.Strings/StringToInt flash |
% | extras/examples/08.Strings/StringToInt RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardLogout flash |
% | extras/examples/09.USB/Keyboard/KeyboardLogout RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardMessage flash |
% | extras/examples/09.USB/Keyboard/KeyboardMessage RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardReprogram flash |
% | extras/examples/09.USB/Keyboard/KeyboardReprogram RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardSerial flash |
% | extras/examples/09.USB/Keyboard/KeyboardSerial RAM for global variables |
% | extras/examples/09.USB/KeyboardAndMouseControl flash |
% | extras/examples/09.USB/KeyboardAndMouseControl RAM for global variables |
% | extras/examples/09.USB/Mouse/ButtonMouseControl flash |
% | extras/examples/09.USB/Mouse/ButtonMouseControl RAM for global variables |
% | extras/examples/09.USB/Mouse/JoystickMouseControl flash |
% | extras/examples/09.USB/Mouse/JoystickMouseControl RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterface flash |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterface RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeter flash |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeter RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLamp flash |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLamp RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicator flash |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicator RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p06_LightTheremin flash |
% | extras/examples/10.StarterKit_BasicKit/p06_LightTheremin RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p07_Keyboard flash |
% | extras/examples/10.StarterKit_BasicKit/p07_Keyboard RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglass flash |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglass RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheel flash |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheel RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p10_Zoetrope flash |
% | extras/examples/10.StarterKit_BasicKit/p10_Zoetrope RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBall flash |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBall RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLock flash |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLock RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLamp flash |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLamp RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogo flash |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogo RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtons flash |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtons RAM for global variables |
% | extras/examples/11.ArduinoISP/ArduinoISP flash |
% | extras/examples/11.ArduinoISP/ArduinoISP RAM for global variables |
% | libraries/Wire/examples/SFRRanger_reader flash |
% | libraries/Wire/examples/SFRRanger_reader RAM for global variables |
% | libraries/Wire/examples/digital_potentiometer flash |
% | libraries/Wire/examples/digital_potentiometer RAM for global variables |
% | libraries/Wire/examples/master_reader flash |
% | libraries/Wire/examples/master_reader RAM for global variables |
% | libraries/Wire/examples/master_writer flash |
% | libraries/Wire/examples/master_writer RAM for global variables |
% | libraries/Wire/examples/slave_receiver flash |
% | libraries/Wire/examples/slave_receiver RAM for global variables |
% | libraries/Wire/examples/slave_sender flash |
% | libraries/Wire/examples/slave_sender RAM for global variables |
% | libraries/USBHost/examples/ADKTerminalTest flash |
% | libraries/USBHost/examples/ADKTerminalTest RAM for global variables |
% | libraries/USBHost/examples/KeyboardController flash |
% | libraries/USBHost/examples/KeyboardController RAM for global variables |
% | libraries/USBHost/examples/MouseController flash |
% | libraries/USBHost/examples/MouseController RAM for global variables |
% | libraries/USBHost/examples/USB_desc flash |
% | libraries/USBHost/examples/USB_desc RAM for global variables |
% | libraries/SPI/examples/BarometricPressureSensor flash |
% | libraries/SPI/examples/BarometricPressureSensor RAM for global variables |
% | libraries/SPI/examples/DigitalPotControl flash |
% | libraries/SPI/examples/DigitalPotControl RAM for global variables |
% | libraries/SFU/examples/SFU_LoadBinary flash |
% | libraries/SFU/examples/SFU_LoadBinary RAM for global variables |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponse flash |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponse RAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Knob flash |
% | /home/runner/Arduino/libraries/Servo/examples/Knob RAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Sweep flash |
% | /home/runner/Arduino/libraries/Servo/examples/Sweep RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscroll flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscroll RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Blink flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Blink RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursor flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursor RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacter flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacter RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Display flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Display RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorld flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorld RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Scroll flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Scroll RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplay flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplay RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirection flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirection RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursor flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursor RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinter flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinter RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatus flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatus RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClient flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClient RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveString flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveString RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClient flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClient flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClient RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeating flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeating RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServer RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/CardInfo flash |
% | /home/runner/Arduino/libraries/SD/examples/CardInfo RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Datalogger flash |
% | /home/runner/Arduino/libraries/SD/examples/Datalogger RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/DumpFile flash |
% | /home/runner/Arduino/libraries/SD/examples/DumpFile RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Files flash |
% | /home/runner/Arduino/libraries/SD/examples/Files RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWrite flash |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWrite RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/ReadWrite flash |
% | /home/runner/Arduino/libraries/SD/examples/ReadWrite RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/listfiles flash |
% | /home/runner/Arduino/libraries/SD/examples/listfiles RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryption flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryption RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEP flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEP RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPA flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPA RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworks flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworks RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFi flash |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFi RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServer flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClient flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveString flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClient flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeating flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeating RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServer flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometer flash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometer RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscope flash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscope RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometer flash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometer RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArray flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArray RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSink flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSink RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObject flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObject RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractor flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractor RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUID flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUID RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfo flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfo RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUID flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUID RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlock flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlock RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterrupt flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterrupt RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTH flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTH RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-Cloner flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-Cloner RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWrite flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWrite RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUID flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUID RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReader flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReader RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_check flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_check RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keys flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keys RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_data flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_data RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_data flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_data RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ScanNetworks flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiChatServer flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiPing flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebClient flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebServer flash |
% | /tmp/compilesketches-b0639yrp/install_from_repository-wu12gnox/examples/WiFiWebServer RAM for global variables |
% | libraries/SDU/examples/Usage flash |
% | libraries/SDU/examples/Usage RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ScanNetworks flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiChatServer flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiPing flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebClient flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebServer flash |
% | /tmp/compilesketches-y226udw_/install_from_repository-1l4oabgi/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlus flash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlus RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernet flash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernet RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoString flash |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoString RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmata RAM for global variables |
% | libraries/I2S/examples/InputSerialPlotter flash |
% | libraries/I2S/examples/InputSerialPlotter RAM for global variables |
% | libraries/I2S/examples/SimpleTone flash |
% | libraries/I2S/examples/SimpleTone RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ScanNetworks flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiChatServer flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiPing flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebClient flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebServer flash |
% | /tmp/compilesketches-tn1sm_c0/install_from_repository-t1zq_0iv/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ScanNetworks flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiChatServer flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiPing flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebClient flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebServer flash |
% | /tmp/compilesketches-p35uy_be/install_from_repository-llph93ow/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ScanNetworks flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiChatServer flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiPing flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebClient flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebServer flash |
% | /tmp/compilesketches-i9q8e5cm/install_from_repository-1mm5hjfy/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ScanNetworks flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiChatServer flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiPing flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebClient flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebServer flash |
% | /tmp/compilesketches-xn0wiwdw/install_from_repository-az7ov172/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClient flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClient flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClient flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMS flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMS RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMS flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMS RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnology flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnology RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworks flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworks RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagement flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagement RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthrough flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthrough RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRS flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRS RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModem flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModem RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ScanNetworks flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiChatServer flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiPing flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebClient flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebServer flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-3ejyk10r/examples/WiFiWebServer RAM for global variables |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloader flash |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloader RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorEncoder flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorEncoder RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorNeopixelRainbowStrips flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorNeopixelRainbowStrips RAM for global variables |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorTestSketch flash |
% | /tmp/compilesketches-zx_3xgy8/install_from_repository-1bh1sl58/examples/VidorTestSketch RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ScanNetworks flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiChatServer flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiPing flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebClient flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebServer flash |
% | /tmp/compilesketches-nl_l50fa/install_from_repository-9pzq8ptm/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSender flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSender RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridge flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridge RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfiguration flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfiguration RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceive flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceive RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standalone flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standalone RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ScanNetworks flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiChatServer flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiPing flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebClient flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebServer flash |
% | /tmp/compilesketches-0v6dvd0s/install_from_repository-evj_eokh/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ScanNetworks flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiChatServer flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiPing flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebClient flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebServer flash |
% | /tmp/compilesketches-6c3861gy/install_from_repository-lp7k_1rb/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServer flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryption flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryption RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEP flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEP RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterprise flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterprise RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworks flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworks RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvanced flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvanced RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFi flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFi RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersion flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersion RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdater flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdater RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthrough flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthrough RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServer flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPing flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPing RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClient flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorage flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorage RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClient flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveString flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClient flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeating flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeating RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServer flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ScanNetworks flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiChatServer flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiPing flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebClient flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebServer flash |
% | /tmp/compilesketches-hfeu9pp4/install_from_repository-syugb1ts/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ScanNetworks flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiChatServer flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiPing flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebClient flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebServer flash |
% | /tmp/compilesketches-8uqc_6l1/install_from_repository-6w6bw16k/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ScanNetworks flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiChatServer flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiPing flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebClient flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebServer flash |
% | /tmp/compilesketches-b7d3by_1/install_from_repository-e61qglk9/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ScanNetworks flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiChatServer flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiPing flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebClient flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebServer flash |
% | /tmp/compilesketches-4kaw5ii_/install_from_repository-oma3ngz7/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ScanNetworks flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiChatServer flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiPing flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebClient flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebServer flash |
% | /tmp/compilesketches-qhc3czs7/install_from_repository-m0xtm_zb/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ScanNetworks flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiChatServer flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiPing flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebClient flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebServer flash |
% | /tmp/compilesketches-u2hdw3iz/install_from_repository-39etzgwv/examples/WiFiWebServer RAM 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/AnalogReadSerial flash |
% | extras/examples/01.Basics/AnalogReadSerial RAM for global variables |
% | extras/examples/01.Basics/BareMinimum flash |
% | extras/examples/01.Basics/BareMinimum RAM for global variables |
% | extras/examples/01.Basics/Blink flash |
% | extras/examples/01.Basics/Blink RAM for global variables |
% | extras/examples/01.Basics/DigitalReadSerial flash |
% | extras/examples/01.Basics/DigitalReadSerial RAM for global variables |
% | extras/examples/01.Basics/Fade flash |
% | extras/examples/01.Basics/Fade RAM for global variables |
% | extras/examples/01.Basics/ReadAnalogVoltage flash |
% | extras/examples/01.Basics/ReadAnalogVoltage RAM for global variables |
% | extras/examples/02.Digital/BlinkWithoutDelay flash |
% | extras/examples/02.Digital/BlinkWithoutDelay RAM for global variables |
% | extras/examples/02.Digital/Button flash |
% | extras/examples/02.Digital/Button RAM for global variables |
% | extras/examples/02.Digital/Debounce flash |
% | extras/examples/02.Digital/Debounce RAM for global variables |
% | extras/examples/02.Digital/DigitalInputPullup flash |
% | extras/examples/02.Digital/DigitalInputPullup RAM for global variables |
% | extras/examples/02.Digital/StateChangeDetection flash |
% | extras/examples/02.Digital/StateChangeDetection RAM for global variables |
% | extras/examples/02.Digital/toneKeyboard flash |
% | extras/examples/02.Digital/toneKeyboard RAM for global variables |
% | extras/examples/02.Digital/toneMelody flash |
% | extras/examples/02.Digital/toneMelody RAM for global variables |
% | extras/examples/02.Digital/toneMultiple flash |
% | extras/examples/02.Digital/toneMultiple RAM for global variables |
% | extras/examples/02.Digital/tonePitchFollower flash |
% | extras/examples/02.Digital/tonePitchFollower RAM for global variables |
% | extras/examples/03.Analog/AnalogInOutSerial flash |
% | extras/examples/03.Analog/AnalogInOutSerial RAM for global variables |
% | extras/examples/03.Analog/AnalogInput flash |
% | extras/examples/03.Analog/AnalogInput RAM for global variables |
% | extras/examples/03.Analog/AnalogWriteMega flash |
% | extras/examples/03.Analog/AnalogWriteMega RAM for global variables |
% | extras/examples/03.Analog/Calibration flash |
% | extras/examples/03.Analog/Calibration RAM for global variables |
% | extras/examples/03.Analog/Fading flash |
% | extras/examples/03.Analog/Fading RAM for global variables |
% | extras/examples/03.Analog/Smoothing flash |
% | extras/examples/03.Analog/Smoothing RAM for global variables |
% | extras/examples/04.Communication/ASCIITable flash |
% | extras/examples/04.Communication/ASCIITable RAM for global variables |
% | extras/examples/04.Communication/Dimmer flash |
% | extras/examples/04.Communication/Dimmer RAM for global variables |
% | extras/examples/04.Communication/Graph flash |
% | extras/examples/04.Communication/Graph RAM for global variables |
% | extras/examples/04.Communication/Midi flash |
% | extras/examples/04.Communication/Midi RAM for global variables |
% | extras/examples/04.Communication/MultiSerial flash |
% | extras/examples/04.Communication/MultiSerial RAM for global variables |
% | extras/examples/04.Communication/PhysicalPixel flash |
% | extras/examples/04.Communication/PhysicalPixel RAM for global variables |
% | extras/examples/04.Communication/ReadASCIIString flash |
% | extras/examples/04.Communication/ReadASCIIString RAM for global variables |
% | extras/examples/04.Communication/SerialCallResponse flash |
% | extras/examples/04.Communication/SerialCallResponse RAM for global variables |
% | extras/examples/04.Communication/SerialCallResponseASCII flash |
% | extras/examples/04.Communication/SerialCallResponseASCII RAM for global variables |
% | extras/examples/04.Communication/SerialEvent flash |
% | extras/examples/04.Communication/SerialEvent RAM for global variables |
% | extras/examples/04.Communication/SerialPassthrough flash |
% | extras/examples/04.Communication/SerialPassthrough RAM for global variables |
% | extras/examples/04.Communication/VirtualColorMixer flash |
% | extras/examples/04.Communication/VirtualColorMixer RAM for global variables |
% | extras/examples/05.Control/Arrays flash |
% | extras/examples/05.Control/Arrays RAM for global variables |
% | extras/examples/05.Control/ForLoopIteration flash |
% | extras/examples/05.Control/ForLoopIteration RAM for global variables |
% | extras/examples/05.Control/IfStatementConditional flash |
% | extras/examples/05.Control/IfStatementConditional RAM for global variables |
% | extras/examples/05.Control/WhileStatementConditional flash |
% | extras/examples/05.Control/WhileStatementConditional RAM for global variables |
% | extras/examples/05.Control/switchCase flash |
% | extras/examples/05.Control/switchCase RAM for global variables |
% | extras/examples/05.Control/switchCase2 flash |
% | extras/examples/05.Control/switchCase2 RAM for global variables |
% | extras/examples/06.Sensors/ADXL3xx flash |
% | extras/examples/06.Sensors/ADXL3xx RAM for global variables |
% | extras/examples/06.Sensors/Knock flash |
% | extras/examples/06.Sensors/Knock RAM for global variables |
% | extras/examples/06.Sensors/Memsic2125 flash |
% | extras/examples/06.Sensors/Memsic2125 RAM for global variables |
% | extras/examples/06.Sensors/Ping flash |
% | extras/examples/06.Sensors/Ping RAM for global variables |
% | extras/examples/07.Display/RowColumnScanning flash |
% | extras/examples/07.Display/RowColumnScanning RAM for global variables |
% | extras/examples/07.Display/barGraph flash |
% | extras/examples/07.Display/barGraph RAM for global variables |
% | extras/examples/08.Strings/CharacterAnalysis flash |
% | extras/examples/08.Strings/CharacterAnalysis RAM for global variables |
% | extras/examples/08.Strings/StringAdditionOperator flash |
% | extras/examples/08.Strings/StringAdditionOperator RAM for global variables |
% | extras/examples/08.Strings/StringAppendOperator flash |
% | extras/examples/08.Strings/StringAppendOperator RAM for global variables |
% | extras/examples/08.Strings/StringCaseChanges flash |
% | extras/examples/08.Strings/StringCaseChanges RAM for global variables |
% | extras/examples/08.Strings/StringCharacters flash |
% | extras/examples/08.Strings/StringCharacters RAM for global variables |
% | extras/examples/08.Strings/StringComparisonOperators flash |
% | extras/examples/08.Strings/StringComparisonOperators RAM for global variables |
% | extras/examples/08.Strings/StringConstructors flash |
% | extras/examples/08.Strings/StringConstructors RAM for global variables |
% | extras/examples/08.Strings/StringIndexOf flash |
% | extras/examples/08.Strings/StringIndexOf RAM for global variables |
% | extras/examples/08.Strings/StringLength flash |
% | extras/examples/08.Strings/StringLength RAM for global variables |
% | extras/examples/08.Strings/StringLengthTrim flash |
% | extras/examples/08.Strings/StringLengthTrim RAM for global variables |
% | extras/examples/08.Strings/StringReplace flash |
% | extras/examples/08.Strings/StringReplace RAM for global variables |
% | extras/examples/08.Strings/StringStartsWithEndsWith flash |
% | extras/examples/08.Strings/StringStartsWithEndsWith RAM for global variables |
% | extras/examples/08.Strings/StringSubstring flash |
% | extras/examples/08.Strings/StringSubstring RAM for global variables |
% | extras/examples/08.Strings/StringToInt flash |
% | extras/examples/08.Strings/StringToInt RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardLogout flash |
% | extras/examples/09.USB/Keyboard/KeyboardLogout RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardMessage flash |
% | extras/examples/09.USB/Keyboard/KeyboardMessage RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardReprogram flash |
% | extras/examples/09.USB/Keyboard/KeyboardReprogram RAM for global variables |
% | extras/examples/09.USB/Keyboard/KeyboardSerial flash |
% | extras/examples/09.USB/Keyboard/KeyboardSerial RAM for global variables |
% | extras/examples/09.USB/KeyboardAndMouseControl flash |
% | extras/examples/09.USB/KeyboardAndMouseControl RAM for global variables |
% | extras/examples/09.USB/Mouse/ButtonMouseControl flash |
% | extras/examples/09.USB/Mouse/ButtonMouseControl RAM for global variables |
% | extras/examples/09.USB/Mouse/JoystickMouseControl flash |
% | extras/examples/09.USB/Mouse/JoystickMouseControl RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterface flash |
% | extras/examples/10.StarterKit_BasicKit/p02_SpaceshipInterface RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeter flash |
% | extras/examples/10.StarterKit_BasicKit/p03_LoveOMeter RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLamp flash |
% | extras/examples/10.StarterKit_BasicKit/p04_ColorMixingLamp RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicator flash |
% | extras/examples/10.StarterKit_BasicKit/p05_ServoMoodIndicator RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p06_LightTheremin flash |
% | extras/examples/10.StarterKit_BasicKit/p06_LightTheremin RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p07_Keyboard flash |
% | extras/examples/10.StarterKit_BasicKit/p07_Keyboard RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglass flash |
% | extras/examples/10.StarterKit_BasicKit/p08_DigitalHourglass RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheel flash |
% | extras/examples/10.StarterKit_BasicKit/p09_MotorizedPinwheel RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p10_Zoetrope flash |
% | extras/examples/10.StarterKit_BasicKit/p10_Zoetrope RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBall flash |
% | extras/examples/10.StarterKit_BasicKit/p11_CrystalBall RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLock flash |
% | extras/examples/10.StarterKit_BasicKit/p12_KnockLock RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLamp flash |
% | extras/examples/10.StarterKit_BasicKit/p13_TouchSensorLamp RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogo flash |
% | extras/examples/10.StarterKit_BasicKit/p14_TweakTheArduinoLogo RAM for global variables |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtons flash |
% | extras/examples/10.StarterKit_BasicKit/p15_HackingButtons RAM for global variables |
% | extras/examples/11.ArduinoISP/ArduinoISP flash |
% | extras/examples/11.ArduinoISP/ArduinoISP RAM for global variables |
% | libraries/Wire/examples/SFRRanger_reader flash |
% | libraries/Wire/examples/SFRRanger_reader RAM for global variables |
% | libraries/Wire/examples/digital_potentiometer flash |
% | libraries/Wire/examples/digital_potentiometer RAM for global variables |
% | libraries/Wire/examples/master_reader flash |
% | libraries/Wire/examples/master_reader RAM for global variables |
% | libraries/Wire/examples/master_writer flash |
% | libraries/Wire/examples/master_writer RAM for global variables |
% | libraries/Wire/examples/slave_receiver flash |
% | libraries/Wire/examples/slave_receiver RAM for global variables |
% | libraries/Wire/examples/slave_sender flash |
% | libraries/Wire/examples/slave_sender RAM for global variables |
% | libraries/USBHost/examples/ADKTerminalTest flash |
% | libraries/USBHost/examples/ADKTerminalTest RAM for global variables |
% | libraries/USBHost/examples/KeyboardController flash |
% | libraries/USBHost/examples/KeyboardController RAM for global variables |
% | libraries/USBHost/examples/MouseController flash |
% | libraries/USBHost/examples/MouseController RAM for global variables |
% | libraries/USBHost/examples/USB_desc flash |
% | libraries/USBHost/examples/USB_desc RAM for global variables |
% | libraries/SPI/examples/BarometricPressureSensor flash |
% | libraries/SPI/examples/BarometricPressureSensor RAM for global variables |
% | libraries/SPI/examples/DigitalPotControl flash |
% | libraries/SPI/examples/DigitalPotControl RAM for global variables |
% | libraries/SFU/examples/SFU_LoadBinary flash |
% | libraries/SFU/examples/SFU_LoadBinary RAM for global variables |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponse flash |
% | libraries/SAMD_AnalogCorrection/examples/CorrectADCResponse RAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Knob flash |
% | /home/runner/Arduino/libraries/Servo/examples/Knob RAM for global variables |
% | /home/runner/Arduino/libraries/Servo/examples/Sweep flash |
% | /home/runner/Arduino/libraries/Servo/examples/Sweep RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscroll flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Autoscroll RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Blink flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Blink RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursor flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Cursor RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacter flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/CustomCharacter RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Display flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Display RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorld flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/HelloWorld RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Scroll flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/Scroll RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplay flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/SerialDisplay RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirection flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/TextDirection RAM for global variables |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursor flash |
% | /home/runner/Arduino/libraries/LiquidCrystal/examples/setCursor RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/AdvancedChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/BarometricPressureWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/ChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinter flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpAddressPrinter RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/DhcpChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatus flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/LinkStatus RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/PagerServer RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClient flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/TelnetClient RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveString flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UDPSendReceiveString RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClient flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/UdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClient flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClient RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeating flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebClientRepeating RAM for global variables |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServer flash |
% | /home/runner/Arduino/libraries/Ethernet/examples/WebServer RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/CardInfo flash |
% | /home/runner/Arduino/libraries/SD/examples/CardInfo RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Datalogger flash |
% | /home/runner/Arduino/libraries/SD/examples/Datalogger RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/DumpFile flash |
% | /home/runner/Arduino/libraries/SD/examples/DumpFile RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/Files flash |
% | /home/runner/Arduino/libraries/SD/examples/Files RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWrite flash |
% | /home/runner/Arduino/libraries/SD/examples/NonBlockingWrite RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/ReadWrite flash |
% | /home/runner/Arduino/libraries/SD/examples/ReadWrite RAM for global variables |
% | /home/runner/Arduino/libraries/SD/examples/listfiles flash |
% | /home/runner/Arduino/libraries/SD/examples/listfiles RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryption flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectNoEncryption RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEP flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWEP RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPA flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ConnectWithWPA RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworks flash |
% | /home/runner/Arduino/libraries/WiFi/examples/ScanNetworks RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFi flash |
% | /home/runner/Arduino/libraries/WiFi/examples/SimpleWebServerWiFi RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServer flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClient flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveString flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClient flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeating flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebClientRepeating RAM for global variables |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServer flash |
% | /home/runner/Arduino/libraries/WiFi/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometer flash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleAccelerometer RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscope flash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleGyroscope RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometer flash |
% | /home/runner/Arduino/libraries/Arduino_LSM9DS1/examples/SimpleMagnetometer RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArray flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONArray RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSink flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONKitchenSink RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObject flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONObject RAM for global variables |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractor flash |
% | /home/runner/Arduino/libraries/Arduino_JSON/examples/JSONValueExtractor RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUID flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ChangeUID RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfo flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/DumpInfo RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUID flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/FixBrickedUID RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlock flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MifareClassicValueBlock RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterrupt flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/MinimalInterrupt RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTH flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/Ntag216_AUTH RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-Cloner flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/RFID-Cloner RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWrite flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadAndWrite RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUID flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadNUID RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReader flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/ReadUidMultiReader RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_check flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/firmware_check RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keys flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_default_keys RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_data flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_read_personal_data RAM for global variables |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_data flash |
% | /home/runner/Arduino/libraries/MFRC522/examples/rfid_write_personal_data RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ScanNetworks flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiChatServer flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiPing flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebClient flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebServer flash |
% | /tmp/compilesketches-qv6o6s0q/install_from_repository-w5o91h6z/examples/WiFiWebServer RAM for global variables |
% | libraries/SDU/examples/Usage flash |
% | libraries/SDU/examples/Usage RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ScanNetworks flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiChatServer flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiPing flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebClient flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebServer flash |
% | /tmp/compilesketches-afquqdeu/install_from_repository-f2u26slo/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlus flash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataPlus RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernet flash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmataEthernet RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/StandardFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleDigitalFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/SimpleAnalogFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/ServoFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoString flash |
% | /home/runner/Arduino/libraries/Firmata/examples/EchoString RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/AnalogFirmata RAM for global variables |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmata flash |
% | /home/runner/Arduino/libraries/Firmata/examples/AllInputsFirmata RAM for global variables |
% | libraries/I2S/examples/InputSerialPlotter flash |
% | libraries/I2S/examples/InputSerialPlotter RAM for global variables |
% | libraries/I2S/examples/SimpleTone flash |
% | libraries/I2S/examples/SimpleTone RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ScanNetworks flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiChatServer flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiPing flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebClient flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebServer flash |
% | /tmp/compilesketches-hlvze3bq/install_from_repository-uy3_fi2q/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ScanNetworks flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiChatServer flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiPing flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebClient flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebServer flash |
% | /tmp/compilesketches-zimztk11/install_from_repository-8lv6fl6q/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ScanNetworks flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiChatServer flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiPing flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebClient flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebServer flash |
% | /tmp/compilesketches-eymmu42q/install_from_repository-wi8l73uj/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ScanNetworks flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiChatServer flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiPing flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebClient flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebServer flash |
% | /tmp/compilesketches-peb4pag4/install_from_repository-e4vt5vf7/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClient flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/GPRSUdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClient flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBSSLWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClient flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/NBWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMS flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/ReceiveSMS RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMS flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/SendSMS RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnology flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/ChooseRadioAccessTechnology RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworks flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/NBScanNetworks RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagement flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/PinManagement RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthrough flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/SerialSARAPassthrough RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRS flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestGPRS RAM for global variables |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModem flash |
% | /home/runner/Arduino/libraries/MKRNB/examples/Tools/TestModem RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ScanNetworks flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiChatServer flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiPing flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebClient flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebServer flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-cot4fe58/examples/WiFiWebServer RAM for global variables |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloader flash |
% | libraries/SAMD_BootloaderUpdater/examples/UpdateBootloader RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorEncoder flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorEncoder RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorNeopixelRainbowStrips flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorNeopixelRainbowStrips RAM for global variables |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorTestSketch flash |
% | /tmp/compilesketches-uaep2l9w/install_from_repository-pusskz2v/examples/VidorTestSketch RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ScanNetworks flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiChatServer flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiPing flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebClient flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebServer flash |
% | /tmp/compilesketches-6kafarrq/install_from_repository-18muut40/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSender flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/DumbModemLoraSender RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridge flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FWUpdaterBridge RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfiguration flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/FirstConfiguration RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceive flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/LoraSendAndReceive RAM for global variables |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standalone flash |
% | /home/runner/Arduino/libraries/MKRWAN/examples/MKRWANFWUpdate_standalone RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ScanNetworks flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiChatServer flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiPing flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebClient flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebServer flash |
% | /tmp/compilesketches-kodtnm5h/install_from_repository-76hq7c2d/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ScanNetworks flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiChatServer flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiPing flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebClient flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebServer flash |
% | /tmp/compilesketches-e481izxl/install_from_repository-1xca6mpl/examples/WiFiWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServer flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/AP_SimpleWebServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryption flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectNoEncryption RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEP flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWEP RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterprise flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ConnectWithWPA2Enterprise RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworks flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworks RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvanced flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/ScanNetworksAdvanced RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFi flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/SimpleWebServerWiFi RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersion flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/CheckFirmwareVersion RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdater flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/FirmwareUpdater RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthrough flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/Tools/SerialNINAPassthrough RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServer flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiChatServer RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPing flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiPing RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClient flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiSSLClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorage flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiStorage RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClient flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpNtpClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveString flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClient flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClient RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeating flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebClientRepeating RAM for global variables |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServer flash |
% | /home/runner/Arduino/libraries/WiFiNINA/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ScanNetworks flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiChatServer flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiPing flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebClient flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebServer flash |
% | /tmp/compilesketches-0h_mjac_/install_from_repository-b53hp9yu/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ScanNetworks flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiChatServer flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiPing flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebClient flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebServer flash |
% | /tmp/compilesketches-gjrwn9bp/install_from_repository-_hwjj2vl/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ScanNetworks flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiChatServer flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiPing flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebClient flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebServer flash |
% | /tmp/compilesketches-ason7ljv/install_from_repository-4cavyttu/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ScanNetworks flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiChatServer flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiPing flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebClient flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebServer flash |
% | /tmp/compilesketches-zkcvywby/install_from_repository-mj5wiqa1/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ScanNetworks flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiChatServer flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiPing flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebClient flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebServer flash |
% | /tmp/compilesketches-swlx_rmr/install_from_repository-g4xh2n3n/examples/WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/AP_SimpleWebServer flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/AP_SimpleWebServer RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/CheckWifi101FirmwareVersion flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/CheckWifi101FirmwareVersion RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectNoEncryption flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectNoEncryption RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectWithWEP flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectWithWEP RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectWithWPA flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ConnectWithWPA RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/FirmwareUpdater flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/FirmwareUpdater RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/MDNS_WiFiWebServer flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/MDNS_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/Provisioning_WiFiWebServer flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/Provisioning_WiFiWebServer RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ScanNetworks flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ScanNetworks RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ScanNetworksAdvanced flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/ScanNetworksAdvanced RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/SimpleWebServerWiFi flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/SimpleWebServerWiFi RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiChatServer flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiChatServer RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiPing flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiPing RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiSSLClient flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiSSLClient RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiUdpNtpClient flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiUdpNtpClient RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiUdpSendReceiveString flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiUdpSendReceiveString RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebClient flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebClient RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebClientRepeating flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebClientRepeating RAM for global variables |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebServer flash |
% | /tmp/compilesketches-mdatp9xf/install_from_repository-5jjib8pn/examples/WiFiWebServer RAM 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 |