Date: Fri, 14 Oct 2016 19:03:59 +0000 (UTC) From: Boris Samorodov <bsam@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423983 - in head/devel: . arduino-core arduino-core/files Message-ID: <201610141903.u9EJ3x2g034084@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bsam Date: Fri Oct 14 19:03:59 2016 New Revision: 423983 URL: https://svnweb.freebsd.org/changeset/ports/423983 Log: Core board support used in Arduino 1.6 WWW: http://www.arduino.cc PR: 213482 Submitted by: bsdports@kyle-evans.net Added: head/devel/arduino-core/ head/devel/arduino-core/Makefile (contents, props changed) head/devel/arduino-core/distinfo (contents, props changed) head/devel/arduino-core/files/ head/devel/arduino-core/files/patch-hardware_arduino_avr_platform.txt (contents, props changed) head/devel/arduino-core/files/patch-hardware_arduino_sam_cores_arduino_itoa.c (contents, props changed) head/devel/arduino-core/files/patch-hardware_arduino_sam_cores_arduino_itoa.h (contents, props changed) head/devel/arduino-core/files/patch-hardware_package__index__bundled.json (contents, props changed) head/devel/arduino-core/pkg-descr (contents, props changed) head/devel/arduino-core/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 14 18:22:39 2016 (r423982) +++ head/devel/Makefile Fri Oct 14 19:03:59 2016 (r423983) @@ -96,6 +96,7 @@ SUBDIR += arcanist SUBDIR += arduino SUBDIR += arduino-builder + SUBDIR += arduino-core SUBDIR += arduino-ctags SUBDIR += arduino-glcd SUBDIR += arduino-irremote Added: head/devel/arduino-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-core/Makefile Fri Oct 14 19:03:59 2016 (r423983) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= arduino-core +PORTVERSION= 1.6.12 +CATEGORIES= devel + +MAINTAINER= bsdports@kyle-evans.net +COMMENT= Core board support for Arduino devices + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/license.txt + +USE_GITHUB= yes +GH_ACCOUNT= arduino +GH_PROJECT= Arduino + +STRIP= # No stripping, uses Elf firmware + +OPTIONS_DEFINE= DOCS EXAMPLES SAMD +OPTIONS_SUB= yes + +NO_BUILD= yes +SAMD_DESC= Core support for SAMD boards (Zero/MKR1000) +SAMD_GH_TUPLE= arduino:ArduinoCore-samd:1.6.8:samd/hardware/arduino/samd + +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +ARCH= x86_64 +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|%%ARCH%%|${ARCH}|g' -e 's|%%OSREL%%|${OSREL:R}|g' ${WRKSRC}/hardware/package_index_bundled.json + +do-install: + (cd ${WRKSRC}/ && ${COPYTREE_SHARE} "hardware" ${STAGEDIR}${PREFIX}/arduino ${FIND_EXPR}) + +.include <bsd.port.post.mk> Added: head/devel/arduino-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-core/distinfo Fri Oct 14 19:03:59 2016 (r423983) @@ -0,0 +1,5 @@ +TIMESTAMP = 1476459830 +SHA256 (arduino-Arduino-1.6.12_GH0.tar.gz) = 081c063e34bd72c9912705f33395cdd1870424826b4365dd64439575e0f11817 +SIZE (arduino-Arduino-1.6.12_GH0.tar.gz) = 81248294 +SHA256 (arduino-ArduinoCore-samd-1.6.8_GH0.tar.gz) = 2e7eded445d9b9cb88babf8d17e63886258ca52103ca4b3760fbb33311e5ffe7 +SIZE (arduino-ArduinoCore-samd-1.6.8_GH0.tar.gz) = 922278 Added: head/devel/arduino-core/files/patch-hardware_arduino_avr_platform.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-core/files/patch-hardware_arduino_avr_platform.txt Fri Oct 14 19:03:59 2016 (r423983) @@ -0,0 +1,13 @@ +--- hardware/arduino/avr/platform.txt.orig 2016-10-13 04:27:28 UTC ++++ hardware/arduino/avr/platform.txt +@@ -20,8 +20,8 @@ compiler.warning_flags.all=-Wall -Wextra + # Default "compiler.path" is correct, change only if you want to override the initial value + compiler.path={runtime.tools.avr-gcc.path}/bin/ + compiler.c.cmd=avr-gcc +-compiler.c.flags=-c -g -Os {compiler.warning_flags} -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects +-compiler.c.elf.flags={compiler.warning_flags} -Os -flto -fuse-linker-plugin -Wl,--gc-sections ++compiler.c.flags=-c -g -Os {compiler.warning_flags} -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto ++compiler.c.elf.flags={compiler.warning_flags} -Os -flto -Wl,--gc-sections + compiler.c.elf.cmd=avr-gcc + compiler.S.flags=-c -g -x assembler-with-cpp -flto + compiler.cpp.cmd=avr-g++ Added: head/devel/arduino-core/files/patch-hardware_arduino_sam_cores_arduino_itoa.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-core/files/patch-hardware_arduino_sam_cores_arduino_itoa.c Fri Oct 14 19:03:59 2016 (r423983) @@ -0,0 +1,11 @@ +--- hardware/arduino/sam/cores/arduino/itoa.c.orig 2016-10-14 15:00:06 UTC ++++ hardware/arduino/sam/cores/arduino/itoa.c +@@ -121,7 +121,7 @@ extern char* ltoa( long value, char *str + return string; + } + +-extern char* utoa( unsigned long value, char *string, int radix ) ++extern char* utoa( unsigned int value, char *string, int radix ) + { + return ultoa( value, string, radix ) ; + } Added: head/devel/arduino-core/files/patch-hardware_arduino_sam_cores_arduino_itoa.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-core/files/patch-hardware_arduino_sam_cores_arduino_itoa.h Fri Oct 14 19:03:59 2016 (r423983) @@ -0,0 +1,11 @@ +--- hardware/arduino/sam/cores/arduino/itoa.h.orig 2016-10-14 15:00:09 UTC ++++ hardware/arduino/sam/cores/arduino/itoa.h +@@ -31,7 +31,7 @@ extern void itoa( int n, char s[] ) ; + + extern char* itoa( int value, char *string, int radix ) ; + extern char* ltoa( long value, char *string, int radix ) ; +-extern char* utoa( unsigned long value, char *string, int radix ) ; ++extern char* utoa( unsigned int value, char *string, int radix ) ; + extern char* ultoa( unsigned long value, char *string, int radix ) ; + #endif /* 0 */ + Added: head/devel/arduino-core/files/patch-hardware_package__index__bundled.json ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-core/files/patch-hardware_package__index__bundled.json Fri Oct 14 19:03:59 2016 (r423983) @@ -0,0 +1,22 @@ +--- hardware/package_index_bundled.json.orig 2016-10-04 12:22:50 UTC ++++ hardware/package_index_bundled.json +@@ -63,6 +63,9 @@ + "version": "6.3.0-arduino6", + "systems": [ + { ++ "host": "%%ARCH%%-freebsd%%OSREL%%" ++ }, ++ { + "size": "644600", + "checksum": "SHA-256:2426207423d58eb0e5fc4df9493418f1cb54ba3f328fdc7c3bb582f920b9cbe7", + "host": "arm-linux-gnueabihf", +@@ -104,6 +107,9 @@ + "version": "4.9.2-atmel3.5.3-arduino2", + "systems": [ + { ++ "host": "%%ARCH%%-freebsd%%OSREL%%" ++ }, ++ { + "size": "27400889", + "checksum": "SHA-256:77f300d519bc6b9a25df17b36cb303218e9a258c059b2f6bff8f71a0d8f96821", + "host": "arm-linux-gnueabihf", Added: head/devel/arduino-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-core/pkg-descr Fri Oct 14 19:03:59 2016 (r423983) @@ -0,0 +1,3 @@ +Core board support used in Arduino 1.6 + +WWW: http://www.arduino.cc Added: head/devel/arduino-core/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-core/pkg-plist Fri Oct 14 19:03:59 2016 (r423983) @@ -0,0 +1,3681 @@ +arduino/hardware/arduino/avr/boards.txt +arduino/hardware/arduino/avr/bootloaders/atmega/ATmegaBOOT_168.c +arduino/hardware/arduino/avr/bootloaders/atmega/ATmegaBOOT_168_atmega1280.hex +arduino/hardware/arduino/avr/bootloaders/atmega/ATmegaBOOT_168_atmega328.hex +arduino/hardware/arduino/avr/bootloaders/atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex +arduino/hardware/arduino/avr/bootloaders/atmega/ATmegaBOOT_168_diecimila.hex +arduino/hardware/arduino/avr/bootloaders/atmega/ATmegaBOOT_168_ng.hex +arduino/hardware/arduino/avr/bootloaders/atmega/ATmegaBOOT_168_pro_8MHz.hex +arduino/hardware/arduino/avr/bootloaders/atmega/Makefile +arduino/hardware/arduino/avr/bootloaders/atmega8/ATmegaBOOT-prod-firmware-2009-11-07.hex +arduino/hardware/arduino/avr/bootloaders/atmega8/ATmegaBOOT.c +arduino/hardware/arduino/avr/bootloaders/atmega8/ATmegaBOOT.hex +arduino/hardware/arduino/avr/bootloaders/atmega8/ATmegaBOOT.txt +arduino/hardware/arduino/avr/bootloaders/atmega8/Makefile +arduino/hardware/arduino/avr/bootloaders/bt/ATmegaBOOT_168.c +arduino/hardware/arduino/avr/bootloaders/bt/ATmegaBOOT_168.hex +arduino/hardware/arduino/avr/bootloaders/bt/ATmegaBOOT_168_atmega328_bt.hex +arduino/hardware/arduino/avr/bootloaders/bt/Makefile +arduino/hardware/arduino/avr/bootloaders/caterina-Arduino_Robot/Caterina-Robot-Control.hex +arduino/hardware/arduino/avr/bootloaders/caterina-Arduino_Robot/Caterina-Robot-Motor.hex +arduino/hardware/arduino/avr/bootloaders/caterina-Arduino_Robot/Caterina-Robot.txt +arduino/hardware/arduino/avr/bootloaders/caterina-Arduino_Robot/Caterina.c +arduino/hardware/arduino/avr/bootloaders/caterina-Arduino_Robot/Caterina.h +arduino/hardware/arduino/avr/bootloaders/caterina-Arduino_Robot/Descriptors.c +arduino/hardware/arduino/avr/bootloaders/caterina-Arduino_Robot/Descriptors.h +arduino/hardware/arduino/avr/bootloaders/caterina-Arduino_Robot/Makefile +arduino/hardware/arduino/avr/bootloaders/caterina-Arduino_Robot/README.md +arduino/hardware/arduino/avr/bootloaders/caterina-LilyPadUSB/Caterina-LilyPadUSB.hex +arduino/hardware/arduino/avr/bootloaders/caterina-LilyPadUSB/Caterina.c +arduino/hardware/arduino/avr/bootloaders/caterina-LilyPadUSB/Caterina.h +arduino/hardware/arduino/avr/bootloaders/caterina-LilyPadUSB/Descriptors.c +arduino/hardware/arduino/avr/bootloaders/caterina-LilyPadUSB/Descriptors.h +arduino/hardware/arduino/avr/bootloaders/caterina-LilyPadUSB/Makefile +arduino/hardware/arduino/avr/bootloaders/caterina-LilyPadUSB/Readme.txt +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Esplora.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Esplora.txt +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Genuino-Micro.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Genuino-Micro.txt +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Leonardo.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Leonardo.txt +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Micro.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Micro.txt +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Yun-noblink.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina-Yun.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina.c +arduino/hardware/arduino/avr/bootloaders/caterina/Caterina.h +arduino/hardware/arduino/avr/bootloaders/caterina/Descriptors.c +arduino/hardware/arduino/avr/bootloaders/caterina/Descriptors.h +arduino/hardware/arduino/avr/bootloaders/caterina/Esplora-prod-firmware-2012-12-10.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Esplora-prod-firmware-2012-12-10.txt +arduino/hardware/arduino/avr/bootloaders/caterina/Leonardo-prod-firmware-2012-04-26.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Leonardo-prod-firmware-2012-04-26.txt +arduino/hardware/arduino/avr/bootloaders/caterina/Leonardo-prod-firmware-2012-12-10.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Leonardo-prod-firmware-2012-12-10.txt +arduino/hardware/arduino/avr/bootloaders/caterina/Makefile +arduino/hardware/arduino/avr/bootloaders/caterina/Micro-prod-firmware-2012-11-23.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Micro-prod-firmware-2012-11-23.txt +arduino/hardware/arduino/avr/bootloaders/caterina/Micro-prod-firmware-2012-12-10.hex +arduino/hardware/arduino/avr/bootloaders/caterina/Micro-prod-firmware-2012-12-10.txt +arduino/hardware/arduino/avr/bootloaders/gemma/README.md +arduino/hardware/arduino/avr/bootloaders/gemma/avrdude.conf +arduino/hardware/arduino/avr/bootloaders/gemma/gemma_v1.hex +arduino/hardware/arduino/avr/bootloaders/gemma/usbconfig.h +arduino/hardware/arduino/avr/bootloaders/gemma/usbconfig.patch +arduino/hardware/arduino/avr/bootloaders/lilypad/LilyPadBOOT_168.hex +arduino/hardware/arduino/avr/bootloaders/lilypad/src/ATmegaBOOT.c +arduino/hardware/arduino/avr/bootloaders/lilypad/src/Makefile +arduino/hardware/arduino/avr/bootloaders/optiboot/Makefile +arduino/hardware/arduino/avr/bootloaders/optiboot/README.TXT +arduino/hardware/arduino/avr/bootloaders/optiboot/boot.h +arduino/hardware/arduino/avr/bootloaders/optiboot/makeall +arduino/hardware/arduino/avr/bootloaders/optiboot/omake +arduino/hardware/arduino/avr/bootloaders/optiboot/omake.bat +arduino/hardware/arduino/avr/bootloaders/optiboot/optiboot.c +arduino/hardware/arduino/avr/bootloaders/optiboot/optiboot_atmega168.hex +arduino/hardware/arduino/avr/bootloaders/optiboot/optiboot_atmega168.lst +arduino/hardware/arduino/avr/bootloaders/optiboot/optiboot_atmega328-Mini.hex +arduino/hardware/arduino/avr/bootloaders/optiboot/optiboot_atmega328.hex +arduino/hardware/arduino/avr/bootloaders/optiboot/optiboot_atmega328.lst +arduino/hardware/arduino/avr/bootloaders/optiboot/optiboot_atmega8.hex +arduino/hardware/arduino/avr/bootloaders/optiboot/optiboot_atmega8.lst +arduino/hardware/arduino/avr/bootloaders/optiboot/pin_defs.h +arduino/hardware/arduino/avr/bootloaders/optiboot/stk500.h +arduino/hardware/arduino/avr/bootloaders/stk500v2/License.txt +arduino/hardware/arduino/avr/bootloaders/stk500v2/Makefile +arduino/hardware/arduino/avr/bootloaders/stk500v2/Mega2560-prod-firmware-2011-06-29.hex +arduino/hardware/arduino/avr/bootloaders/stk500v2/STK500V2.pnproj +arduino/hardware/arduino/avr/bootloaders/stk500v2/STK500V2.pnps +arduino/hardware/arduino/avr/bootloaders/stk500v2/avr_cpunames.h +arduino/hardware/arduino/avr/bootloaders/stk500v2/avrinterruptnames.h +arduino/hardware/arduino/avr/bootloaders/stk500v2/command.h +arduino/hardware/arduino/avr/bootloaders/stk500v2/stk500boot.c +arduino/hardware/arduino/avr/bootloaders/stk500v2/stk500boot.ppg +arduino/hardware/arduino/avr/bootloaders/stk500v2/stk500boot_v2_mega2560.hex +arduino/hardware/arduino/avr/cores/arduino/Arduino.h +arduino/hardware/arduino/avr/cores/arduino/CDC.cpp +arduino/hardware/arduino/avr/cores/arduino/Client.h +arduino/hardware/arduino/avr/cores/arduino/HardwareSerial.cpp +arduino/hardware/arduino/avr/cores/arduino/HardwareSerial.h +arduino/hardware/arduino/avr/cores/arduino/HardwareSerial0.cpp +arduino/hardware/arduino/avr/cores/arduino/HardwareSerial1.cpp +arduino/hardware/arduino/avr/cores/arduino/HardwareSerial2.cpp +arduino/hardware/arduino/avr/cores/arduino/HardwareSerial3.cpp +arduino/hardware/arduino/avr/cores/arduino/HardwareSerial_private.h +arduino/hardware/arduino/avr/cores/arduino/IPAddress.cpp +arduino/hardware/arduino/avr/cores/arduino/IPAddress.h +arduino/hardware/arduino/avr/cores/arduino/PluggableUSB.cpp +arduino/hardware/arduino/avr/cores/arduino/PluggableUSB.h +arduino/hardware/arduino/avr/cores/arduino/Print.cpp +arduino/hardware/arduino/avr/cores/arduino/Print.h +arduino/hardware/arduino/avr/cores/arduino/Printable.h +arduino/hardware/arduino/avr/cores/arduino/Server.h +arduino/hardware/arduino/avr/cores/arduino/Stream.cpp +arduino/hardware/arduino/avr/cores/arduino/Stream.h +arduino/hardware/arduino/avr/cores/arduino/Tone.cpp +arduino/hardware/arduino/avr/cores/arduino/USBAPI.h +arduino/hardware/arduino/avr/cores/arduino/USBCore.cpp +arduino/hardware/arduino/avr/cores/arduino/USBCore.h +arduino/hardware/arduino/avr/cores/arduino/USBDesc.h +arduino/hardware/arduino/avr/cores/arduino/Udp.h +arduino/hardware/arduino/avr/cores/arduino/WCharacter.h +arduino/hardware/arduino/avr/cores/arduino/WInterrupts.c +arduino/hardware/arduino/avr/cores/arduino/WMath.cpp +arduino/hardware/arduino/avr/cores/arduino/WString.cpp +arduino/hardware/arduino/avr/cores/arduino/WString.h +arduino/hardware/arduino/avr/cores/arduino/abi.cpp +arduino/hardware/arduino/avr/cores/arduino/binary.h +arduino/hardware/arduino/avr/cores/arduino/hooks.c +arduino/hardware/arduino/avr/cores/arduino/main.cpp +arduino/hardware/arduino/avr/cores/arduino/new.cpp +arduino/hardware/arduino/avr/cores/arduino/new.h +arduino/hardware/arduino/avr/cores/arduino/wiring.c +arduino/hardware/arduino/avr/cores/arduino/wiring_analog.c +arduino/hardware/arduino/avr/cores/arduino/wiring_digital.c +arduino/hardware/arduino/avr/cores/arduino/wiring_private.h +arduino/hardware/arduino/avr/cores/arduino/wiring_pulse.S +arduino/hardware/arduino/avr/cores/arduino/wiring_pulse.c +arduino/hardware/arduino/avr/cores/arduino/wiring_shift.c +arduino/hardware/arduino/avr/firmwares/arduinoISP/readme.txt +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/Arduino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-Rev3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/Arduino-COMBINED-dfu-usbserial-atmega16u2-MegaADK-Rev3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/Arduino-COMBINED-dfu-usbserial-atmega16u2-Uno-Rev3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-R3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Uno-R3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/MEGA-dfu_and_usbserial_combined.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/README.txt +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/UNO-dfu_and_usbserial_combined.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbdfu/Arduino-usbdfu.c +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbdfu/Arduino-usbdfu.h +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbdfu/Board/LEDs.h +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbdfu/Descriptors.c +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbdfu/Descriptors.h +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbdfu/makefile +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbdfu/readme.txt +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-atmega16u2-Mega2560-Rev3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-atmega16u2-MegaADK-Rev3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-atmega16u2-Uno-Rev3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-mega.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-uno.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial.c +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial.h +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Board/LEDs.h +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Descriptors.c +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Descriptors.h +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Mega2560-R3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Uno-R3.hex +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Lib/LightweightRingBuff.h +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/makefile +arduino/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/readme.txt +arduino/hardware/arduino/avr/firmwares/wifishield/binary/wifiHD.elf +arduino/hardware/arduino/avr/firmwares/wifishield/binary/wifiHD.hex +arduino/hardware/arduino/avr/firmwares/wifishield/binary/wifiHD_2_1.elf +arduino/hardware/arduino/avr/firmwares/wifishield/binary/wifi_dnld.elf +arduino/hardware/arduino/avr/firmwares/wifishield/binary/wifi_dnld.hex +arduino/hardware/arduino/avr/firmwares/wifishield/binary/wifi_dnld_2_1.elf +arduino/hardware/arduino/avr/firmwares/wifishield/scripts/ArduinoWifiShield_upgrade.sh +arduino/hardware/arduino/avr/firmwares/wifishield/scripts/ArduinoWifiShield_upgrade_mac.sh +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/.cproject +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/.project +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/Release/wifiHD.elf +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/Release/wifiHD.hex +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/CONFIG/conf_access.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/CONFIG/conf_at45dbx.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/CONFIG/conf_ebi.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/CONFIG/conf_sd_mmc_spi.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/ASM/trampoline.x +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/arduino.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/evk1105.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/board.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/board.h.my +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR1/GCC/lib_ucr1_hd_sdio_v2.7.0.a +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR1/GCC/lib_ucr1_hd_spi_v2.7.0.a +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR1/GCC/lib_ucr1_hd_wl_sta_intwpa_v2.7.0.a +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR2/GCC/lib_ucr2_hd_sdio_v2.7.0.a +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR2/GCC/lib_ucr2_hd_spi_v2.7.0.a +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR2/GCC/lib_ucr2_hd_wl_sta_intwpa_v2.7.0.a +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/revision.txt +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_api.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_fw.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_os.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_sdio.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_spi.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wlap_api.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/CPU/CYCLE_COUNTER/cycle_counter.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EBI/SMC/smc.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EBI/SMC/smc.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EIC/eic.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EIC/eic.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/exception.x +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PDCA/pdca.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PDCA/pdca.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm_conf_clocks.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/RTC/rtc.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/RTC/rtc.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/TC/tc.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/TC/tc.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/DELAY/delay.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/DELAY/delay.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/dhcp.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/dns.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/init.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/autoip.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/icmp.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/igmp.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/inet.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/inet_chksum.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/ip.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/ip_addr.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/ip_frag.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/mem.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/memp.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/netif.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/pbuf.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/raw.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/stats.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/tcp.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/tcp_in.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/tcp_out.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/udp.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/autoip.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/icmp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/igmp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/inet.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/inet_chksum.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/ip.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/ip_addr.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/ip_frag.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/api.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/api_msg.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/arch.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/debug.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/def.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/dhcp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/dns.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/err.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/init.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/mem.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/memp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/memp_std.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netbuf.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netdb.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netif.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netifapi.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/opt.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/pbuf.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/raw.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/sio.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp_asn1.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp_msg.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp_structs.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/sockets.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/stats.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/sys.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/tcp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/tcpip.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/udp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/etharp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/loopif.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/ppp_oe.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/slipif.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/netif/etharp.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/netif/loopif.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/arch/cc.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/arch/perf.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/lwipopts.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/netif/wlif.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/netif/wlif.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/readme.txt +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_cpu.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_exceptions.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_interrupts.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_io.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_usart.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/libnewlib_addons-at32ucr2-speed_opt.a +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/0512/GCC/link_uc3a0512.lds +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/1256/GCC/link_uc3a1256.lds +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/mrepeat.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/preprocessor.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/stringz.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/tpaste.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/STARTUP_FILES/GCC/crt0.x +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/compiler.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/conf_isp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/parts.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/ard_spi.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/ard_spi.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/ard_tcp.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/ard_tcp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/ard_utils.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/ard_utils.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/avr32_spi.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/board_init.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/board_init.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/cmd_wl.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/cmd_wl.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/console.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/console.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/debug.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/fw_download.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/fw_download_extflash.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/license.txt +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/lwip_setup.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/lwip_setup.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/lwipopts.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/main.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/nvram.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/nvram.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/owl_os.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/ping.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/ping.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/printf-stdarg.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/printf-stdarg.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/timer.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/timer.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/top_defs.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/trace.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/util.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/util.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/wifi_spi.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/wl_cm.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/wl_cm.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/src/wl_definitions.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifiHD/wifiHD.cproj +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/.cproject +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/.project +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/Release/wifi_dnld.elf +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/CONFIG/conf_access.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/CONFIG/conf_at45dbx.h +%%DOCS%%arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/Doc/SPB104 product brief.pdf +%%DOCS%%arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/Doc/gettingstarted.pdf +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/ASM/trampoline.x +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/arduino.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/evk1105.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/board.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/board.h.ori +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/exception.x +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm_conf_clocks.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_cpu.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_exceptions.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_interrupts.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_io.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_usart.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/libnewlib_addons-at32ucr2-speed_opt.a +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/0512/GCC/link_uc3a0512.lds +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/1256/GCC/link_uc3a1256.lds +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/mrepeat.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/preprocessor.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/stringz.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/tpaste.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/STARTUP_FILES/GCC/crt0.x +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/compiler.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/conf_isp.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/parts.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/clocks.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/clocks.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/flash_fw.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/license.txt +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/nor_flash.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/nor_flash.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/printf-stdarg.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/printf-stdarg.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/startup.c +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/startup.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/src/wl_fw.h +arduino/hardware/arduino/avr/firmwares/wifishield/wifi_dnld/wifi_dnld.cproj +arduino/hardware/arduino/avr/firmwares/wifishield/wifishield.atsln +arduino/hardware/arduino/avr/libraries/EEPROM/README.md +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_iteration/eeprom_iteration.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_update/eeprom_update.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_write/eeprom_write.ino +arduino/hardware/arduino/avr/libraries/EEPROM/keywords.txt +arduino/hardware/arduino/avr/libraries/EEPROM/library.properties +arduino/hardware/arduino/avr/libraries/EEPROM/src/EEPROM.h +arduino/hardware/arduino/avr/libraries/HID/keywords.txt +arduino/hardware/arduino/avr/libraries/HID/library.properties +arduino/hardware/arduino/avr/libraries/HID/src/HID.cpp +arduino/hardware/arduino/avr/libraries/HID/src/HID.h +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino +arduino/hardware/arduino/avr/libraries/SPI/keywords.txt +arduino/hardware/arduino/avr/libraries/SPI/library.properties +arduino/hardware/arduino/avr/libraries/SPI/src/SPI.cpp +arduino/hardware/arduino/avr/libraries/SPI/src/SPI.h +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino +arduino/hardware/arduino/avr/libraries/SoftwareSerial/keywords.txt +arduino/hardware/arduino/avr/libraries/SoftwareSerial/library.properties +arduino/hardware/arduino/avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp +arduino/hardware/arduino/avr/libraries/SoftwareSerial/src/SoftwareSerial.h +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/Wire/examples/master_reader/master_reader.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/Wire/examples/master_writer/master_writer.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/Wire/examples/slave_receiver/slave_receiver.ino +%%EXAMPLES%%arduino/hardware/arduino/avr/libraries/Wire/examples/slave_sender/slave_sender.ino +arduino/hardware/arduino/avr/libraries/Wire/keywords.txt +arduino/hardware/arduino/avr/libraries/Wire/library.properties +arduino/hardware/arduino/avr/libraries/Wire/src/Wire.cpp +arduino/hardware/arduino/avr/libraries/Wire/src/Wire.h +arduino/hardware/arduino/avr/libraries/Wire/src/utility/twi.c +arduino/hardware/arduino/avr/libraries/Wire/src/utility/twi.h +arduino/hardware/arduino/avr/platform.txt +arduino/hardware/arduino/avr/programmers.txt +arduino/hardware/arduino/avr/variants/eightanaloginputs/pins_arduino.h +arduino/hardware/arduino/avr/variants/ethernet/pins_arduino.h +arduino/hardware/arduino/avr/variants/gemma/pins_arduino.h +arduino/hardware/arduino/avr/variants/leonardo/pins_arduino.h +arduino/hardware/arduino/avr/variants/mega/pins_arduino.h +arduino/hardware/arduino/avr/variants/micro/pins_arduino.h +arduino/hardware/arduino/avr/variants/robot_control/pins_arduino.h +arduino/hardware/arduino/avr/variants/robot_motor/pins_arduino.h +arduino/hardware/arduino/avr/variants/standard/pins_arduino.h +arduino/hardware/arduino/avr/variants/yun/pins_arduino.h +arduino/hardware/arduino/sam/boards.txt +arduino/hardware/arduino/sam/cores/arduino/Arduino.h +arduino/hardware/arduino/sam/cores/arduino/Client.h +arduino/hardware/arduino/sam/cores/arduino/HardwareSerial.h +arduino/hardware/arduino/sam/cores/arduino/IPAddress.cpp +arduino/hardware/arduino/sam/cores/arduino/IPAddress.h +arduino/hardware/arduino/sam/cores/arduino/Print.cpp +arduino/hardware/arduino/sam/cores/arduino/Print.h +arduino/hardware/arduino/sam/cores/arduino/Printable.h +arduino/hardware/arduino/sam/cores/arduino/Reset.cpp +arduino/hardware/arduino/sam/cores/arduino/Reset.h +arduino/hardware/arduino/sam/cores/arduino/RingBuffer.cpp +arduino/hardware/arduino/sam/cores/arduino/RingBuffer.h +arduino/hardware/arduino/sam/cores/arduino/Server.h +arduino/hardware/arduino/sam/cores/arduino/Stream.cpp +arduino/hardware/arduino/sam/cores/arduino/Stream.h +arduino/hardware/arduino/sam/cores/arduino/Tone.cpp.disabled +arduino/hardware/arduino/sam/cores/arduino/Tone.h +arduino/hardware/arduino/sam/cores/arduino/UARTClass.cpp +arduino/hardware/arduino/sam/cores/arduino/UARTClass.h +arduino/hardware/arduino/sam/cores/arduino/USARTClass.cpp +arduino/hardware/arduino/sam/cores/arduino/USARTClass.h +arduino/hardware/arduino/sam/cores/arduino/USB/CDC.cpp +arduino/hardware/arduino/sam/cores/arduino/USB/PluggableUSB.cpp +arduino/hardware/arduino/sam/cores/arduino/USB/PluggableUSB.h +arduino/hardware/arduino/sam/cores/arduino/USB/USBAPI.h +arduino/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp +arduino/hardware/arduino/sam/cores/arduino/USB/USBCore.h +arduino/hardware/arduino/sam/cores/arduino/USB/USBDesc.h +arduino/hardware/arduino/sam/cores/arduino/Udp.h +arduino/hardware/arduino/sam/cores/arduino/WCharacter.h +arduino/hardware/arduino/sam/cores/arduino/WInterrupts.c +arduino/hardware/arduino/sam/cores/arduino/WInterrupts.h +arduino/hardware/arduino/sam/cores/arduino/WMath.cpp +arduino/hardware/arduino/sam/cores/arduino/WMath.h +arduino/hardware/arduino/sam/cores/arduino/WString.cpp +arduino/hardware/arduino/sam/cores/arduino/WString.h +arduino/hardware/arduino/sam/cores/arduino/abi.cpp +arduino/hardware/arduino/sam/cores/arduino/avr/dtostrf.c +arduino/hardware/arduino/sam/cores/arduino/avr/dtostrf.h +arduino/hardware/arduino/sam/cores/arduino/avr/interrupt.h +arduino/hardware/arduino/sam/cores/arduino/avr/pgmspace.h +arduino/hardware/arduino/sam/cores/arduino/binary.h +arduino/hardware/arduino/sam/cores/arduino/cortex_handlers.c +arduino/hardware/arduino/sam/cores/arduino/hooks.c +arduino/hardware/arduino/sam/cores/arduino/iar_calls_sam3.c +arduino/hardware/arduino/sam/cores/arduino/itoa.c +arduino/hardware/arduino/sam/cores/arduino/itoa.h +arduino/hardware/arduino/sam/cores/arduino/main.cpp +arduino/hardware/arduino/sam/cores/arduino/new.cpp +arduino/hardware/arduino/sam/cores/arduino/syscalls.h +arduino/hardware/arduino/sam/cores/arduino/syscalls_sam3.c +arduino/hardware/arduino/sam/cores/arduino/watchdog.cpp +arduino/hardware/arduino/sam/cores/arduino/watchdog.h +arduino/hardware/arduino/sam/cores/arduino/wiring.c +arduino/hardware/arduino/sam/cores/arduino/wiring.h +arduino/hardware/arduino/sam/cores/arduino/wiring_analog.c +arduino/hardware/arduino/sam/cores/arduino/wiring_analog.h +arduino/hardware/arduino/sam/cores/arduino/wiring_constants.h +arduino/hardware/arduino/sam/cores/arduino/wiring_digital.c +arduino/hardware/arduino/sam/cores/arduino/wiring_digital.h +arduino/hardware/arduino/sam/cores/arduino/wiring_private.h +arduino/hardware/arduino/sam/cores/arduino/wiring_pulse.cpp +arduino/hardware/arduino/sam/cores/arduino/wiring_pulse.h +arduino/hardware/arduino/sam/cores/arduino/wiring_pulse_asm.S +arduino/hardware/arduino/sam/cores/arduino/wiring_shift.c +arduino/hardware/arduino/sam/cores/arduino/wiring_shift.h +arduino/hardware/arduino/sam/firmwares/atmega16u2/Arduino-DUE-usbserial-prod-firmware-2012-11-05.hex +arduino/hardware/arduino/sam/firmwares/atmega16u2/Arduino-DUE-usbserial-prod-firmware-2013-02-05.hex +arduino/hardware/arduino/sam/firmwares/atmega16u2/arduino-usbserial/Arduino-usbserial.c +arduino/hardware/arduino/sam/firmwares/atmega16u2/arduino-usbserial/Arduino-usbserial.h +arduino/hardware/arduino/sam/firmwares/atmega16u2/arduino-usbserial/Board/LEDs.h +arduino/hardware/arduino/sam/firmwares/atmega16u2/arduino-usbserial/Descriptors.c +arduino/hardware/arduino/sam/firmwares/atmega16u2/arduino-usbserial/Descriptors.h +arduino/hardware/arduino/sam/firmwares/atmega16u2/arduino-usbserial/Lib/LightweightRingBuff.h +arduino/hardware/arduino/sam/firmwares/atmega16u2/arduino-usbserial/makefile +arduino/hardware/arduino/sam/firmwares/atmega16u2/arduino-usbserial/readme.txt +arduino/hardware/arduino/sam/libraries/HID/keywords.txt +arduino/hardware/arduino/sam/libraries/HID/library.properties +arduino/hardware/arduino/sam/libraries/HID/src/HID.cpp +arduino/hardware/arduino/sam/libraries/HID/src/HID.h +%%EXAMPLES%%arduino/hardware/arduino/sam/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino +%%EXAMPLES%%arduino/hardware/arduino/sam/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino +arduino/hardware/arduino/sam/libraries/SPI/keywords.txt +arduino/hardware/arduino/sam/libraries/SPI/library.properties +arduino/hardware/arduino/sam/libraries/SPI/src/SPI.cpp +arduino/hardware/arduino/sam/libraries/SPI/src/SPI.h +%%EXAMPLES%%arduino/hardware/arduino/sam/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino +%%EXAMPLES%%arduino/hardware/arduino/sam/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino +%%EXAMPLES%%arduino/hardware/arduino/sam/libraries/Wire/examples/master_reader/master_reader.ino +%%EXAMPLES%%arduino/hardware/arduino/sam/libraries/Wire/examples/master_writer/master_writer.ino +%%EXAMPLES%%arduino/hardware/arduino/sam/libraries/Wire/examples/slave_receiver/slave_receiver.ino +%%EXAMPLES%%arduino/hardware/arduino/sam/libraries/Wire/examples/slave_sender/slave_sender.ino +arduino/hardware/arduino/sam/libraries/Wire/keywords.txt +arduino/hardware/arduino/sam/libraries/Wire/library.properties +arduino/hardware/arduino/sam/libraries/Wire/src/Wire.cpp +arduino/hardware/arduino/sam/libraries/Wire/src/Wire.h +arduino/hardware/arduino/sam/platform.txt +arduino/hardware/arduino/sam/programmers.txt +arduino/hardware/arduino/sam/system/CMSIS/ATMEL Version 2.10.107 +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/CMSIS END USER LICENCE AGREEMENT.pdf +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/Include/math_helper.h +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/Source/math_helper.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_class_marks_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM0l_class_marks_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM0l_class_marks_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM3l_class_marks_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM3l_class_marks_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM4lf_class_marks_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM4lf_class_marks_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/ARMCMx.ld +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_class_marks_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM0l_class_marks_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM0l_class_marks_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM3l_class_marks_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM3l_class_marks_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM4lf_class_marks_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM4lf_class_marks_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/arm_class_marks_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_convolution_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM0l_convolution_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM0l_convolution_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM3l_convolution_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM3l_convolution_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM4lf_convolution_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM4lf_convolution_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/ARMCMx.ld +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_convolution_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM0l_convolution_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM0l_convolution_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM3l_convolution_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM3l_convolution_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM4lf_convolution_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM4lf_convolution_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/arm_convolution_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM0l_dotproduct_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM0l_dotproduct_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM3l_dotproduct_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM3l_dotproduct_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM4lf_dotproduct_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM4lf_dotproduct_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_dotproduct_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/arm_dotproduct_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM0l_fft_bin_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM0l_fft_bin_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM3l_fft_bin_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM3l_fft_bin_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM4lf_fft_bin_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM4lf_fft_bin_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_fft_bin_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/arm_fft_bin_data.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/arm_fft_bin_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM0l_fir_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM0l_fir_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM3l_fir_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM3l_fir_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM4lf_fir_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM4lf_fir_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_fir_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/arm_fir_data.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/arm_fir_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM0l_graphic_equalizer_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM0l_graphic_equalizer_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM3l_graphic_equalizer_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM3l_graphic_equalizer_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM4lf_graphic_equalizer_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM4lf_graphic_equalizer_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_graphic_equalizer_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM0l_linear_interp_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM0l_linear_interp_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM3l_linear_interp_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM3l_linear_interp_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM4lf_linear_interp_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM4lf_linear_interp_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_linear_interp_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/arm_linear_interp_data.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/arm_linear_interp_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM0l_matrix_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM0l_matrix_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM3l_matrix_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM3l_matrix_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM4lf_matrix_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM4lf_matrix_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_matrix_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/arm_matrix_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM0l_signal_converge_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM0l_signal_converge_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM3l_signal_converge_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM3l_signal_converge_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM4lf_signal_converge_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM4lf_signal_converge_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_signal_converge_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/arm_signal_converge_data.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/arm_signal_converge_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM0l_sin_cos_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM0l_sin_cos_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM3l_sin_cos_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM3l_sin_cos_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM4lf_sin_cos_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM4lf_sin_cos_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_sin_cos_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/arm_sin_cos_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/system_ARMCM4.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM0l_variance_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM0l_variance_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM3l_variance_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM3l_variance_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM4lf_variance_example.uvopt +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM4lf_variance_example.uvproj +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_variance_example.ini +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/startup_ARMCM0.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/startup_ARMCM3.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/startup_ARMCM4.s +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/arm_variance_example_f32.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/system_ARMCM0.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/system_ARMCM3.c +%%EXAMPLES%%arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/system_ARMCM4.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM0x_math.uvopt +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM0x_math.uvproj +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM3x_math.uvopt +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM3x_math.uvproj +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM4x_math.uvopt +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM4x_math.uvproj +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexMx_math_Build.bat +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q7.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q7.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q7.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q7.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q7.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q7.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q7.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q7.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q7.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/CommonTables/arm_common_tables.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_conj_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_conj_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_conj_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_dot_prod_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_squared_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_real_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_real_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_real_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_init_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_init_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_init_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_sin_cos_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_sin_cos_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_cos_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_cos_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_cos_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sin_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sin_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sin_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sqrt_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sqrt_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_init_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q15.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q31.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_f32.c +arduino/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q15.c *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610141903.u9EJ3x2g034084>