├── 0.9.0 ├── boards.txt ├── bootloaders │ ├── atmega │ │ ├── ATmegaBOOT_168.c │ │ ├── ATmegaBOOT_168_atmega1280.hex │ │ ├── ATmegaBOOT_168_atmega328.hex │ │ ├── ATmegaBOOT_168_atmega328_pro_8MHz.hex │ │ ├── ATmegaBOOT_168_diecimila.hex │ │ ├── ATmegaBOOT_168_ng.hex │ │ ├── ATmegaBOOT_168_pro_8MHz.hex │ │ └── Makefile │ ├── atmega8 │ │ ├── ATmegaBOOT-prod-firmware-2009-11-07.hex │ │ ├── ATmegaBOOT.c │ │ ├── ATmegaBOOT.hex │ │ ├── ATmegaBOOT.txt │ │ └── Makefile │ ├── bt │ │ ├── ATmegaBOOT_168.c │ │ ├── ATmegaBOOT_168.hex │ │ ├── ATmegaBOOT_168_atmega328_bt.hex │ │ └── Makefile │ ├── caterina-Arduino_Robot │ │ ├── Caterina-Robot-Control.hex │ │ ├── Caterina-Robot-Motor.hex │ │ ├── Caterina-Robot.txt │ │ ├── Caterina.c │ │ ├── Caterina.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Makefile │ │ └── README.md │ ├── caterina-LilyPadUSB │ │ ├── Caterina-LilyPadUSB.hex │ │ ├── Caterina.c │ │ ├── Caterina.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Makefile │ │ └── Readme.txt │ ├── caterina │ │ ├── Caterina-Circuitplay32u4.hex │ │ ├── Caterina-Esplora.hex │ │ ├── Caterina-Esplora.txt │ │ ├── Caterina-Industrial101.hex │ │ ├── Caterina-Leonardo.hex │ │ ├── Caterina-Leonardo.txt │ │ ├── Caterina-LeonardoEthernet.hex │ │ ├── Caterina-LininoOne.hex │ │ ├── Caterina-Micro.hex │ │ ├── Caterina-Micro.txt │ │ ├── Caterina-Yun-noblink.hex │ │ ├── Caterina-Yun.hex │ │ ├── Caterina-YunMini.hex │ │ ├── Caterina.c │ │ ├── Caterina.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Esplora-prod-firmware-2012-12-10.hex │ │ ├── Esplora-prod-firmware-2012-12-10.txt │ │ ├── Leonardo-prod-firmware-2012-04-26.hex │ │ ├── Leonardo-prod-firmware-2012-04-26.txt │ │ ├── Leonardo-prod-firmware-2012-12-10.hex │ │ ├── Leonardo-prod-firmware-2012-12-10.txt │ │ ├── Makefile │ │ ├── Micro-prod-firmware-2012-11-23.hex │ │ ├── Micro-prod-firmware-2012-11-23.txt │ │ ├── Micro-prod-firmware-2012-12-10.hex │ │ └── Micro-prod-firmware-2012-12-10.txt │ ├── gemma │ │ ├── README.md │ │ ├── avrdude.conf │ │ ├── gemma_v1.hex │ │ ├── usbconfig.h │ │ └── usbconfig.patch │ ├── lilypad │ │ ├── LilyPadBOOT_168.hex │ │ └── src │ │ │ ├── ATmegaBOOT.c │ │ │ └── Makefile │ ├── optiboot │ │ ├── Makefile │ │ ├── README.TXT │ │ ├── boot.h │ │ ├── makeall │ │ ├── omake │ │ ├── omake.bat │ │ ├── optiboot.c │ │ ├── optiboot_atmega168.hex │ │ ├── optiboot_atmega168.lst │ │ ├── optiboot_atmega328-Mini.hex │ │ ├── optiboot_atmega328.hex │ │ ├── optiboot_atmega328.lst │ │ ├── optiboot_atmega8.hex │ │ ├── optiboot_atmega8.lst │ │ ├── pin_defs.h │ │ └── stk500.h │ └── stk500v2 │ │ ├── License.txt │ │ ├── Makefile │ │ ├── Mega2560-prod-firmware-2011-06-29.hex │ │ ├── STK500V2.pnproj │ │ ├── STK500V2.pnps │ │ ├── avr_cpunames.h │ │ ├── avrinterruptnames.h │ │ ├── command.h │ │ ├── stk500boot.c │ │ ├── stk500boot.ppg │ │ └── stk500boot_v2_mega2560.hex ├── cores │ └── arduino │ │ ├── Arduino.h │ │ ├── CDC.cpp │ │ ├── Client.h │ │ ├── HardwareSerial.cpp │ │ ├── HardwareSerial.h │ │ ├── HardwareSerial0.cpp │ │ ├── HardwareSerial1.cpp │ │ ├── HardwareSerial2.cpp │ │ ├── HardwareSerial3.cpp │ │ ├── HardwareSerial_private.h │ │ ├── IPAddress.cpp │ │ ├── IPAddress.h │ │ ├── PluggableUSB.cpp │ │ ├── PluggableUSB.h │ │ ├── Print.cpp │ │ ├── Print.h │ │ ├── Printable.h │ │ ├── Server.h │ │ ├── Stream.cpp │ │ ├── Stream.h │ │ ├── Tone.cpp │ │ ├── USBAPI.h │ │ ├── USBCore.cpp │ │ ├── USBCore.h │ │ ├── USBDesc.h │ │ ├── Udp.h │ │ ├── WCharacter.h │ │ ├── WInterrupts.c │ │ ├── WMath.cpp │ │ ├── WString.cpp │ │ ├── WString.h │ │ ├── abi.cpp │ │ ├── binary.h │ │ ├── hooks.c │ │ ├── main.cpp │ │ ├── new │ │ ├── new.cpp │ │ ├── new.h │ │ ├── wiring.c │ │ ├── wiring_analog.c │ │ ├── wiring_digital.c │ │ ├── wiring_private.h │ │ ├── wiring_pulse.S │ │ ├── wiring_pulse.c │ │ └── wiring_shift.c ├── extras │ ├── pack.hourlybuild.bash │ ├── pack.pullrequest.bash │ ├── pack.release.bash │ ├── package_index.json.Hourly.template │ └── package_index.json.PR.template ├── firmwares │ ├── arduinoISP │ │ └── readme.txt │ ├── atmegaxxu2 │ │ ├── Arduino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-Rev3.hex │ │ ├── Arduino-COMBINED-dfu-usbserial-atmega16u2-MegaADK-Rev3.hex │ │ ├── Arduino-COMBINED-dfu-usbserial-atmega16u2-Uno-Rev3.hex │ │ ├── Genuino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-R3.hex │ │ ├── Genuino-COMBINED-dfu-usbserial-atmega16u2-Uno-R3.hex │ │ ├── MEGA-dfu_and_usbserial_combined.hex │ │ ├── README.txt │ │ ├── UNO-dfu_and_usbserial_combined.hex │ │ ├── arduino-usbdfu │ │ │ ├── Arduino-usbdfu.c │ │ │ ├── Arduino-usbdfu.h │ │ │ ├── Board │ │ │ │ └── LEDs.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── makefile │ │ │ └── readme.txt │ │ └── arduino-usbserial │ │ │ ├── Arduino-usbserial-atmega16u2-Mega2560-Rev3.hex │ │ │ ├── Arduino-usbserial-atmega16u2-MegaADK-Rev3.hex │ │ │ ├── Arduino-usbserial-atmega16u2-Uno-Rev3.hex │ │ │ ├── Arduino-usbserial-mega.hex │ │ │ ├── Arduino-usbserial-uno.hex │ │ │ ├── Arduino-usbserial.c │ │ │ ├── Arduino-usbserial.h │ │ │ ├── Board │ │ │ └── LEDs.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Genuino-usbserial-atmega16u2-Mega2560-R3.hex │ │ │ ├── Genuino-usbserial-atmega16u2-Uno-R3.hex │ │ │ ├── Lib │ │ │ └── LightweightRingBuff.h │ │ │ ├── makefile │ │ │ └── readme.txt │ └── wifishield │ │ ├── binary │ │ ├── wifiHD.elf │ │ ├── wifiHD.hex │ │ ├── wifiHD_2_1.elf │ │ ├── wifi_dnld.elf │ │ ├── wifi_dnld.hex │ │ └── wifi_dnld_2_1.elf │ │ ├── scripts │ │ ├── ArduinoWifiShield_upgrade.sh │ │ └── ArduinoWifiShield_upgrade_mac.sh │ │ ├── wifiHD │ │ ├── .cproject │ │ ├── .project │ │ ├── Release │ │ │ ├── wifiHD.elf │ │ │ └── wifiHD.hex │ │ ├── src │ │ │ ├── CONFIG │ │ │ │ ├── conf_access.h │ │ │ │ ├── conf_at45dbx.h │ │ │ │ ├── conf_ebi.h │ │ │ │ └── conf_sd_mmc_spi.h │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ ├── ASM │ │ │ │ │ └── trampoline.x │ │ │ │ ├── BOARDS │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── led.h │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── led.h │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.h.my │ │ │ │ ├── COMPONENTS │ │ │ │ │ ├── MEMORY │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ │ └── WIFI │ │ │ │ │ │ └── HD │ │ │ │ │ │ ├── v2.7.0 │ │ │ │ │ │ ├── UCR1 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ ├── lib_ucr1_hd_sdio_v2.7.0.a │ │ │ │ │ │ │ │ ├── lib_ucr1_hd_spi_v2.7.0.a │ │ │ │ │ │ │ │ └── lib_ucr1_hd_wl_sta_intwpa_v2.7.0.a │ │ │ │ │ │ ├── UCR2 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ ├── lib_ucr2_hd_sdio_v2.7.0.a │ │ │ │ │ │ │ │ ├── lib_ucr2_hd_spi_v2.7.0.a │ │ │ │ │ │ │ │ └── lib_ucr2_hd_wl_sta_intwpa_v2.7.0.a │ │ │ │ │ │ └── revision.txt │ │ │ │ │ │ ├── wl_api.h │ │ │ │ │ │ ├── wl_fw.h │ │ │ │ │ │ ├── wl_os.h │ │ │ │ │ │ ├── wl_sdio.h │ │ │ │ │ │ ├── wl_spi.h │ │ │ │ │ │ └── wlap_api.h │ │ │ │ ├── DRIVERS │ │ │ │ │ ├── CPU │ │ │ │ │ │ └── CYCLE_COUNTER │ │ │ │ │ │ │ └── cycle_counter.h │ │ │ │ │ ├── EBI │ │ │ │ │ │ └── SMC │ │ │ │ │ │ │ ├── smc.c │ │ │ │ │ │ │ └── smc.h │ │ │ │ │ ├── EIC │ │ │ │ │ │ ├── eic.c │ │ │ │ │ │ └── eic.h │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ └── flashc.h │ │ │ │ │ ├── GPIO │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ └── gpio.h │ │ │ │ │ ├── INTC │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ └── intc.h │ │ │ │ │ ├── PDCA │ │ │ │ │ │ ├── pdca.c │ │ │ │ │ │ └── pdca.h │ │ │ │ │ ├── PM │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ ├── RTC │ │ │ │ │ │ ├── rtc.c │ │ │ │ │ │ └── rtc.h │ │ │ │ │ ├── SPI │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ └── spi.h │ │ │ │ │ ├── TC │ │ │ │ │ │ ├── tc.c │ │ │ │ │ │ └── tc.h │ │ │ │ │ └── USART │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ └── usart.h │ │ │ │ ├── SERVICES │ │ │ │ │ ├── DELAY │ │ │ │ │ │ ├── delay.c │ │ │ │ │ │ └── delay.h │ │ │ │ │ ├── LWIP │ │ │ │ │ │ ├── lwip-1.3.2 │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── dhcp.c │ │ │ │ │ │ │ │ ├── dns.c │ │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ ├── autoip.c │ │ │ │ │ │ │ │ │ ├── icmp.c │ │ │ │ │ │ │ │ │ ├── igmp.c │ │ │ │ │ │ │ │ │ ├── inet.c │ │ │ │ │ │ │ │ │ ├── inet_chksum.c │ │ │ │ │ │ │ │ │ ├── ip.c │ │ │ │ │ │ │ │ │ ├── ip_addr.c │ │ │ │ │ │ │ │ │ └── ip_frag.c │ │ │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ │ │ ├── memp.c │ │ │ │ │ │ │ │ ├── netif.c │ │ │ │ │ │ │ │ ├── pbuf.c │ │ │ │ │ │ │ │ ├── raw.c │ │ │ │ │ │ │ │ ├── stats.c │ │ │ │ │ │ │ │ ├── tcp.c │ │ │ │ │ │ │ │ ├── tcp_in.c │ │ │ │ │ │ │ │ ├── tcp_out.c │ │ │ │ │ │ │ │ └── udp.c │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ └── lwip │ │ │ │ │ │ │ │ │ │ ├── autoip.h │ │ │ │ │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ │ │ │ │ │ └── ip_frag.h │ │ │ │ │ │ │ │ ├── lwip │ │ │ │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ │ │ │ ├── api_msg.h │ │ │ │ │ │ │ │ │ ├── arch.h │ │ │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ │ │ ├── def.h │ │ │ │ │ │ │ │ │ ├── dhcp.h │ │ │ │ │ │ │ │ │ ├── dns.h │ │ │ │ │ │ │ │ │ ├── err.h │ │ │ │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ │ │ │ ├── memp.h │ │ │ │ │ │ │ │ │ ├── memp_std.h │ │ │ │ │ │ │ │ │ ├── netbuf.h │ │ │ │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ │ │ │ ├── netif.h │ │ │ │ │ │ │ │ │ ├── netifapi.h │ │ │ │ │ │ │ │ │ ├── opt.h │ │ │ │ │ │ │ │ │ ├── pbuf.h │ │ │ │ │ │ │ │ │ ├── raw.h │ │ │ │ │ │ │ │ │ ├── sio.h │ │ │ │ │ │ │ │ │ ├── snmp.h │ │ │ │ │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ │ │ │ │ ├── snmp_structs.h │ │ │ │ │ │ │ │ │ ├── sockets.h │ │ │ │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ │ │ │ ├── sys.h │ │ │ │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ │ │ │ ├── tcpip.h │ │ │ │ │ │ │ │ │ └── udp.h │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ ├── etharp.h │ │ │ │ │ │ │ │ │ ├── loopif.h │ │ │ │ │ │ │ │ │ ├── ppp_oe.h │ │ │ │ │ │ │ │ │ └── slipif.h │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ ├── etharp.c │ │ │ │ │ │ │ │ └── loopif.c │ │ │ │ │ │ └── lwip-port-1.3.2 │ │ │ │ │ │ │ └── HD │ │ │ │ │ │ │ ├── if │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ │ │ │ └── perf.h │ │ │ │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ └── wlif.h │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ └── wlif.c │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── MEMORY │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ └── UTILS │ │ │ │ │ ├── DEBUG │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ └── print_funcs.h │ │ │ │ │ ├── LIBS │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ └── libnewlib_addons-at32ucr2-speed_opt.a │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ └── GCC │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ ├── stringz.h │ │ │ │ │ └── tpaste.h │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ └── GCC │ │ │ │ │ │ └── crt0.x │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ └── parts.h │ │ │ ├── ard_spi.c │ │ │ ├── ard_spi.h │ │ │ ├── ard_tcp.c │ │ │ ├── ard_tcp.h │ │ │ ├── ard_utils.c │ │ │ ├── ard_utils.h │ │ │ ├── avr32_spi.c │ │ │ ├── board_init.c │ │ │ ├── board_init.h │ │ │ ├── cmd_wl.c │ │ │ ├── cmd_wl.h │ │ │ ├── console.c │ │ │ ├── console.h │ │ │ ├── debug.h │ │ │ ├── fw_download.h │ │ │ ├── fw_download_extflash.c │ │ │ ├── license.txt │ │ │ ├── lwip_setup.c │ │ │ ├── lwip_setup.h │ │ │ ├── lwipopts.h │ │ │ ├── main.c │ │ │ ├── nvram.c │ │ │ ├── nvram.h │ │ │ ├── owl_os.c │ │ │ ├── ping.c │ │ │ ├── ping.h │ │ │ ├── printf-stdarg.c │ │ │ ├── printf-stdarg.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── top_defs.h │ │ │ ├── trace.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── wifi_spi.h │ │ │ ├── wl_cm.c │ │ │ ├── wl_cm.h │ │ │ └── wl_definitions.h │ │ └── wifiHD.cproj │ │ ├── wifi_dnld │ │ ├── .cproject │ │ ├── .project │ │ ├── Release │ │ │ └── wifi_dnld.elf │ │ ├── src │ │ │ ├── CONFIG │ │ │ │ ├── conf_access.h │ │ │ │ └── conf_at45dbx.h │ │ │ ├── Doc │ │ │ │ ├── SPB104 product brief.pdf │ │ │ │ └── gettingstarted.pdf │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ ├── ASM │ │ │ │ │ └── trampoline.x │ │ │ │ ├── BOARDS │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── led.h │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── led.h │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.h.ori │ │ │ │ ├── COMPONENTS │ │ │ │ │ └── MEMORY │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ ├── DRIVERS │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ └── flashc.h │ │ │ │ │ ├── GPIO │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ └── gpio.h │ │ │ │ │ ├── INTC │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ └── intc.h │ │ │ │ │ ├── PM │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ ├── SPI │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ └── spi.h │ │ │ │ │ └── USART │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ └── usart.h │ │ │ │ ├── SERVICES │ │ │ │ │ └── MEMORY │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ └── UTILS │ │ │ │ │ ├── DEBUG │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ └── print_funcs.h │ │ │ │ │ ├── LIBS │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ └── libnewlib_addons-at32ucr2-speed_opt.a │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ └── GCC │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ ├── stringz.h │ │ │ │ │ └── tpaste.h │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ └── GCC │ │ │ │ │ │ └── crt0.x │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ └── parts.h │ │ │ ├── clocks.c │ │ │ ├── clocks.h │ │ │ ├── flash_fw.c │ │ │ ├── license.txt │ │ │ ├── nor_flash.c │ │ │ ├── nor_flash.h │ │ │ ├── printf-stdarg.c │ │ │ ├── printf-stdarg.h │ │ │ ├── startup.c │ │ │ ├── startup.h │ │ │ └── wl_fw.h │ │ └── wifi_dnld.cproj │ │ └── wifishield.atsln ├── libraries │ ├── EEPROM │ │ ├── README.md │ │ ├── examples │ │ │ ├── eeprom_clear │ │ │ │ └── eeprom_clear.ino │ │ │ ├── eeprom_crc │ │ │ │ └── eeprom_crc.ino │ │ │ ├── eeprom_get │ │ │ │ └── eeprom_get.ino │ │ │ ├── eeprom_iteration │ │ │ │ └── eeprom_iteration.ino │ │ │ ├── eeprom_put │ │ │ │ └── eeprom_put.ino │ │ │ ├── eeprom_read │ │ │ │ └── eeprom_read.ino │ │ │ ├── eeprom_update │ │ │ │ └── eeprom_update.ino │ │ │ └── eeprom_write │ │ │ │ └── eeprom_write.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ └── EEPROM.h │ ├── HID │ │ ├── examples │ │ │ └── EnableMouse │ │ │ │ └── EnableMouse.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── HID.cpp │ │ │ └── HID.h │ ├── SPI │ │ ├── examples │ │ │ ├── BarometricPressureSensor │ │ │ │ └── BarometricPressureSensor.ino │ │ │ └── DigitalPotControl │ │ │ │ └── DigitalPotControl.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── SPI.cpp │ │ │ └── SPI.h │ ├── SoftwareSerial │ │ ├── examples │ │ │ ├── SoftwareSerialExample │ │ │ │ └── SoftwareSerialExample.ino │ │ │ └── TwoPortReceive │ │ │ │ └── TwoPortReceive.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── SoftwareSerial.cpp │ │ │ └── SoftwareSerial.h │ └── Wire │ │ ├── examples │ │ ├── SFRRanger_reader │ │ │ └── SFRRanger_reader.ino │ │ ├── digital_potentiometer │ │ │ └── digital_potentiometer.ino │ │ ├── i2c_scanner │ │ │ └── i2c_scanner.ino │ │ ├── master_reader │ │ │ └── master_reader.ino │ │ ├── master_writer │ │ │ └── master_writer.ino │ │ ├── slave_receiver │ │ │ └── slave_receiver.ino │ │ └── slave_sender │ │ │ └── slave_sender.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ ├── Wire.cpp │ │ ├── Wire.h │ │ └── utility │ │ ├── twi.c │ │ └── twi.h ├── platform.txt ├── programmers.txt └── variants │ └── micro │ └── pins_arduino.h ├── README.md ├── package_razerduino_index.json └── razerduino-0.9.0.zip /0.9.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/boards.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega/ATmegaBOOT_168.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega/ATmegaBOOT_168.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega/ATmegaBOOT_168_atmega1280.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega/ATmegaBOOT_168_atmega1280.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega/ATmegaBOOT_168_atmega328.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega/ATmegaBOOT_168_atmega328.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega/ATmegaBOOT_168_atmega328_pro_8MHz.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega/ATmegaBOOT_168_diecimila.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega/ATmegaBOOT_168_diecimila.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega/ATmegaBOOT_168_ng.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega/ATmegaBOOT_168_ng.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega/ATmegaBOOT_168_pro_8MHz.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega/ATmegaBOOT_168_pro_8MHz.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega/Makefile -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega8/ATmegaBOOT-prod-firmware-2009-11-07.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega8/ATmegaBOOT-prod-firmware-2009-11-07.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega8/ATmegaBOOT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega8/ATmegaBOOT.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega8/ATmegaBOOT.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega8/ATmegaBOOT.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega8/ATmegaBOOT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega8/ATmegaBOOT.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/atmega8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/atmega8/Makefile -------------------------------------------------------------------------------- /0.9.0/bootloaders/bt/ATmegaBOOT_168.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/bt/ATmegaBOOT_168.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/bt/ATmegaBOOT_168.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/bt/ATmegaBOOT_168.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/bt/ATmegaBOOT_168_atmega328_bt.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/bt/ATmegaBOOT_168_atmega328_bt.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/bt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/bt/Makefile -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-Arduino_Robot/Caterina-Robot-Control.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-Arduino_Robot/Caterina-Robot-Control.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-Arduino_Robot/Caterina-Robot-Motor.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-Arduino_Robot/Caterina-Robot-Motor.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-Arduino_Robot/Caterina-Robot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-Arduino_Robot/Caterina-Robot.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-Arduino_Robot/Caterina.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-Arduino_Robot/Caterina.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-Arduino_Robot/Caterina.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-Arduino_Robot/Caterina.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-Arduino_Robot/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-Arduino_Robot/Descriptors.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-Arduino_Robot/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-Arduino_Robot/Descriptors.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-Arduino_Robot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-Arduino_Robot/Makefile -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-Arduino_Robot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-Arduino_Robot/README.md -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-LilyPadUSB/Caterina-LilyPadUSB.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-LilyPadUSB/Caterina-LilyPadUSB.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-LilyPadUSB/Caterina.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-LilyPadUSB/Caterina.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-LilyPadUSB/Caterina.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-LilyPadUSB/Caterina.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-LilyPadUSB/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-LilyPadUSB/Descriptors.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-LilyPadUSB/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-LilyPadUSB/Descriptors.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-LilyPadUSB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-LilyPadUSB/Makefile -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina-LilyPadUSB/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina-LilyPadUSB/Readme.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Circuitplay32u4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Circuitplay32u4.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Esplora.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Esplora.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Esplora.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Esplora.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Industrial101.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Industrial101.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Leonardo.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Leonardo.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Leonardo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Leonardo.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-LeonardoEthernet.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-LeonardoEthernet.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-LininoOne.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-LininoOne.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Micro.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Micro.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Micro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Micro.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Yun-noblink.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Yun-noblink.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-Yun.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-Yun.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina-YunMini.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina-YunMini.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Caterina.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Caterina.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Descriptors.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Descriptors.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Esplora-prod-firmware-2012-12-10.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Esplora-prod-firmware-2012-12-10.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Esplora-prod-firmware-2012-12-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Esplora-prod-firmware-2012-12-10.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Leonardo-prod-firmware-2012-04-26.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Leonardo-prod-firmware-2012-04-26.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Leonardo-prod-firmware-2012-04-26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Leonardo-prod-firmware-2012-04-26.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Leonardo-prod-firmware-2012-12-10.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Leonardo-prod-firmware-2012-12-10.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Leonardo-prod-firmware-2012-12-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Leonardo-prod-firmware-2012-12-10.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Makefile -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Micro-prod-firmware-2012-11-23.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Micro-prod-firmware-2012-11-23.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Micro-prod-firmware-2012-11-23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Micro-prod-firmware-2012-11-23.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Micro-prod-firmware-2012-12-10.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Micro-prod-firmware-2012-12-10.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/caterina/Micro-prod-firmware-2012-12-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/caterina/Micro-prod-firmware-2012-12-10.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/gemma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/gemma/README.md -------------------------------------------------------------------------------- /0.9.0/bootloaders/gemma/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/gemma/avrdude.conf -------------------------------------------------------------------------------- /0.9.0/bootloaders/gemma/gemma_v1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/gemma/gemma_v1.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/gemma/usbconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/gemma/usbconfig.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/gemma/usbconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/gemma/usbconfig.patch -------------------------------------------------------------------------------- /0.9.0/bootloaders/lilypad/LilyPadBOOT_168.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/lilypad/LilyPadBOOT_168.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/lilypad/src/ATmegaBOOT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/lilypad/src/ATmegaBOOT.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/lilypad/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/lilypad/src/Makefile -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/Makefile -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/README.TXT -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/boot.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/makeall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/makeall -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/omake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/omake -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/omake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/omake.bat -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/optiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/optiboot.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/optiboot_atmega168.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/optiboot_atmega168.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/optiboot_atmega168.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/optiboot_atmega168.lst -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/optiboot_atmega328-Mini.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/optiboot_atmega328-Mini.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/optiboot_atmega328.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/optiboot_atmega328.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/optiboot_atmega328.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/optiboot_atmega328.lst -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/optiboot_atmega8.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/optiboot_atmega8.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/optiboot_atmega8.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/optiboot_atmega8.lst -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/pin_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/pin_defs.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/optiboot/stk500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/optiboot/stk500.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/License.txt -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/Makefile -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/Mega2560-prod-firmware-2011-06-29.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/Mega2560-prod-firmware-2011-06-29.hex -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/STK500V2.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/STK500V2.pnproj -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/STK500V2.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/STK500V2.pnps -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/avr_cpunames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/avr_cpunames.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/avrinterruptnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/avrinterruptnames.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/command.h -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/stk500boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/stk500boot.c -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/stk500boot.ppg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/stk500boot.ppg -------------------------------------------------------------------------------- /0.9.0/bootloaders/stk500v2/stk500boot_v2_mega2560.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/bootloaders/stk500v2/stk500boot_v2_mega2560.hex -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/CDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/CDC.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Client.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/HardwareSerial.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/HardwareSerial.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/HardwareSerial0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/HardwareSerial0.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/HardwareSerial1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/HardwareSerial1.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/HardwareSerial2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/HardwareSerial2.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/HardwareSerial3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/HardwareSerial3.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/HardwareSerial_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/HardwareSerial_private.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/IPAddress.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/IPAddress.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/PluggableUSB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/PluggableUSB.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/PluggableUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/PluggableUSB.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Print.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Printable.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Server.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Stream.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Stream.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Tone.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/USBAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/USBAPI.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/USBCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/USBCore.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/USBCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/USBCore.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/USBDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/USBDesc.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/Udp.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/WCharacter.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/WInterrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/WInterrupts.c -------------------------------------------------------------------------------- /0.9.0/cores/arduino/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/WMath.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/WString.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/WString.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/abi.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/binary.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/hooks.c -------------------------------------------------------------------------------- /0.9.0/cores/arduino/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/main.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/new -------------------------------------------------------------------------------- /0.9.0/cores/arduino/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/new.cpp -------------------------------------------------------------------------------- /0.9.0/cores/arduino/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/new.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/wiring.c -------------------------------------------------------------------------------- /0.9.0/cores/arduino/wiring_analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/wiring_analog.c -------------------------------------------------------------------------------- /0.9.0/cores/arduino/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/wiring_digital.c -------------------------------------------------------------------------------- /0.9.0/cores/arduino/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/wiring_private.h -------------------------------------------------------------------------------- /0.9.0/cores/arduino/wiring_pulse.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/wiring_pulse.S -------------------------------------------------------------------------------- /0.9.0/cores/arduino/wiring_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/wiring_pulse.c -------------------------------------------------------------------------------- /0.9.0/cores/arduino/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/cores/arduino/wiring_shift.c -------------------------------------------------------------------------------- /0.9.0/extras/pack.hourlybuild.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/extras/pack.hourlybuild.bash -------------------------------------------------------------------------------- /0.9.0/extras/pack.pullrequest.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/extras/pack.pullrequest.bash -------------------------------------------------------------------------------- /0.9.0/extras/pack.release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/extras/pack.release.bash -------------------------------------------------------------------------------- /0.9.0/extras/package_index.json.Hourly.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/extras/package_index.json.Hourly.template -------------------------------------------------------------------------------- /0.9.0/extras/package_index.json.PR.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/extras/package_index.json.PR.template -------------------------------------------------------------------------------- /0.9.0/firmwares/arduinoISP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/arduinoISP/readme.txt -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/Arduino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-Rev3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/Arduino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-Rev3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/Arduino-COMBINED-dfu-usbserial-atmega16u2-MegaADK-Rev3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/Arduino-COMBINED-dfu-usbserial-atmega16u2-MegaADK-Rev3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/Arduino-COMBINED-dfu-usbserial-atmega16u2-Uno-Rev3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/Arduino-COMBINED-dfu-usbserial-atmega16u2-Uno-Rev3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-R3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-R3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Uno-R3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Uno-R3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/MEGA-dfu_and_usbserial_combined.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/MEGA-dfu_and_usbserial_combined.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/README.txt -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/UNO-dfu_and_usbserial_combined.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/UNO-dfu_and_usbserial_combined.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Arduino-usbdfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Arduino-usbdfu.c -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Arduino-usbdfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Arduino-usbdfu.h -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Board/LEDs.h -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Descriptors.c -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/Descriptors.h -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/makefile -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbdfu/readme.txt -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-atmega16u2-Mega2560-Rev3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-atmega16u2-Mega2560-Rev3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-atmega16u2-MegaADK-Rev3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-atmega16u2-MegaADK-Rev3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-atmega16u2-Uno-Rev3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-atmega16u2-Uno-Rev3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-mega.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-mega.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-uno.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial-uno.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial.c -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Arduino-usbserial.h -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Board/LEDs.h -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Descriptors.c -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Descriptors.h -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Mega2560-R3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Mega2560-R3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Uno-R3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Uno-R3.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Lib/LightweightRingBuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/Lib/LightweightRingBuff.h -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/makefile -------------------------------------------------------------------------------- /0.9.0/firmwares/atmegaxxu2/arduino-usbserial/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/atmegaxxu2/arduino-usbserial/readme.txt -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/binary/wifiHD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/binary/wifiHD.elf -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/binary/wifiHD.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/binary/wifiHD.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/binary/wifiHD_2_1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/binary/wifiHD_2_1.elf -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/binary/wifi_dnld.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/binary/wifi_dnld.elf -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/binary/wifi_dnld.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/binary/wifi_dnld.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/binary/wifi_dnld_2_1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/binary/wifi_dnld_2_1.elf -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/scripts/ArduinoWifiShield_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/scripts/ArduinoWifiShield_upgrade.sh -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/scripts/ArduinoWifiShield_upgrade_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/scripts/ArduinoWifiShield_upgrade_mac.sh -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/.cproject -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/.project -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/Release/wifiHD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/Release/wifiHD.elf -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/Release/wifiHD.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/Release/wifiHD.hex -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/CONFIG/conf_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/CONFIG/conf_access.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/CONFIG/conf_at45dbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/CONFIG/conf_at45dbx.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/CONFIG/conf_ebi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/CONFIG/conf_ebi.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/CONFIG/conf_sd_mmc_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/CONFIG/conf_sd_mmc_spi.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/ASM/trampoline.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/ASM/trampoline.x -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/arduino.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/evk1105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/evk1105.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/board.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/board.h.my: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/BOARDS/board.h.my -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR1/GCC/lib_ucr1_hd_sdio_v2.7.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR1/GCC/lib_ucr1_hd_sdio_v2.7.0.a -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR1/GCC/lib_ucr1_hd_spi_v2.7.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR1/GCC/lib_ucr1_hd_spi_v2.7.0.a -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR1/GCC/lib_ucr1_hd_wl_sta_intwpa_v2.7.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR1/GCC/lib_ucr1_hd_wl_sta_intwpa_v2.7.0.a -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR2/GCC/lib_ucr2_hd_sdio_v2.7.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR2/GCC/lib_ucr2_hd_sdio_v2.7.0.a -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR2/GCC/lib_ucr2_hd_spi_v2.7.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR2/GCC/lib_ucr2_hd_spi_v2.7.0.a -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR2/GCC/lib_ucr2_hd_wl_sta_intwpa_v2.7.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/UCR2/GCC/lib_ucr2_hd_wl_sta_intwpa_v2.7.0.a -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/revision.txt: -------------------------------------------------------------------------------- 1 | Revision: 2491 2 | -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_api.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_fw.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_os.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_sdio.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wl_spi.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wlap_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/wlap_api.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/CPU/CYCLE_COUNTER/cycle_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/CPU/CYCLE_COUNTER/cycle_counter.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EBI/SMC/smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EBI/SMC/smc.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EBI/SMC/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EBI/SMC/smc.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EIC/eic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EIC/eic.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EIC/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/EIC/eic.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/exception.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/exception.x -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PDCA/pdca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PDCA/pdca.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PDCA/pdca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PDCA/pdca.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm_conf_clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm_conf_clocks.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/RTC/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/RTC/rtc.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/RTC/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/RTC/rtc.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/TC/tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/TC/tc.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/TC/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/TC/tc.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/DELAY/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/DELAY/delay.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/DELAY/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/DELAY/delay.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/dhcp.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/dns.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/init.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/autoip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/autoip.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/icmp.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/igmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/igmp.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/inet.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/inet_chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/inet_chksum.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/ip.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/ip_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/ip_addr.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/ip_frag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/ipv4/ip_frag.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/mem.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/memp.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/netif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/netif.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/pbuf.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/raw.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/stats.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/tcp.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/tcp_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/tcp_in.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/tcp_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/tcp_out.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/core/udp.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/autoip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/autoip.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/icmp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/igmp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/inet.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/inet_chksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/inet_chksum.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/ip.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/ip_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/ip_addr.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/ip_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/ipv4/lwip/ip_frag.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/api.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/api_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/api_msg.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/arch.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/debug.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/def.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/dhcp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/dns.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/err.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/init.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/mem.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/memp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/memp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/memp_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/memp_std.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netbuf.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netdb.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netif.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netifapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/netifapi.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/opt.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/pbuf.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/raw.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/sio.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp_asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp_asn1.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp_msg.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/snmp_structs.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/sockets.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/stats.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/sys.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/tcp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/tcpip.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/lwip/udp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/etharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/etharp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/loopif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/loopif.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/ppp_oe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/ppp_oe.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/slipif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/include/netif/slipif.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/netif/etharp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/netif/etharp.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/netif/loopif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-1.3.2/src/netif/loopif.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/arch/cc.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/arch/perf.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/lwipopts.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/netif/wlif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/include/netif/wlif.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/netif/wlif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/if/netif/wlif.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/LWIP/lwip-port-1.3.2/HD/readme.txt -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_cpu.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_exceptions.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_interrupts.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_io.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_usart.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/libnewlib_addons-at32ucr2-speed_opt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/libnewlib_addons-at32ucr2-speed_opt.a -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/0512/GCC/link_uc3a0512.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/0512/GCC/link_uc3a0512.lds -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/1256/GCC/link_uc3a1256.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/1256/GCC/link_uc3a1256.lds -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/mrepeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/mrepeat.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/preprocessor.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/stringz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/stringz.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/tpaste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/tpaste.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/STARTUP_FILES/GCC/crt0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/STARTUP_FILES/GCC/crt0.x -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/compiler.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/conf_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/conf_isp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/parts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/SOFTWARE_FRAMEWORK/UTILS/parts.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/ard_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/ard_spi.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/ard_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/ard_spi.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/ard_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/ard_tcp.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/ard_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/ard_tcp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/ard_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/ard_utils.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/ard_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/ard_utils.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/avr32_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/avr32_spi.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/board_init.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/board_init.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/cmd_wl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/cmd_wl.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/cmd_wl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/cmd_wl.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/console.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/console.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/debug.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/fw_download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/fw_download.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/fw_download_extflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/fw_download_extflash.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/license.txt -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/lwip_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/lwip_setup.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/lwip_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/lwip_setup.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/lwipopts.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/main.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/nvram.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/nvram.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/owl_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/owl_os.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/ping.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/ping.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/printf-stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/printf-stdarg.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/printf-stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/printf-stdarg.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/timer.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/timer.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/top_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/top_defs.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/trace.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/util.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/util.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/wifi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/wifi_spi.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/wl_cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/wl_cm.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/wl_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/wl_cm.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/src/wl_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/src/wl_definitions.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifiHD/wifiHD.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifiHD/wifiHD.cproj -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/.cproject -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/.project -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/Release/wifi_dnld.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/Release/wifi_dnld.elf -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/CONFIG/conf_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/CONFIG/conf_access.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/CONFIG/conf_at45dbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/CONFIG/conf_at45dbx.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/Doc/SPB104 product brief.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/Doc/SPB104 product brief.pdf -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/Doc/gettingstarted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/Doc/gettingstarted.pdf -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/ASM/trampoline.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/ASM/trampoline.x -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/arduino.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/ARDUINO/led.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/evk1105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/evk1105.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/EVK1105/led.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/board.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/board.h.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/BOARDS/board.h.ori -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/COMPONENTS/MEMORY/DATA_FLASH/AT45DBX/at45dbx_mem.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/FLASHC/flashc.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/GPIO/gpio.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/exception.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/exception.x -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/INTC/intc.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm_conf_clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/pm_conf_clocks.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/PM/power_clocks_lib.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/SPI/spi.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/DRIVERS/USART/usart.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/SERVICES/MEMORY/CTRL_ACCESS/ctrl_access.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/debug.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/DEBUG/print_funcs.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_cpu.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_exceptions.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_interrupts.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_io.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/INCLUDE/nlao_usart.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/libnewlib_addons-at32ucr2-speed_opt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LIBS/NEWLIB_ADDONS/libnewlib_addons-at32ucr2-speed_opt.a -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/0512/GCC/link_uc3a0512.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/0512/GCC/link_uc3a0512.lds -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/1256/GCC/link_uc3a1256.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/LINKER_SCRIPTS/AT32UC3A/1256/GCC/link_uc3a1256.lds -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/mrepeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/mrepeat.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/preprocessor.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/stringz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/stringz.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/tpaste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/PREPROCESSOR/tpaste.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/STARTUP_FILES/GCC/crt0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/STARTUP_FILES/GCC/crt0.x -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/compiler.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/conf_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/conf_isp.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/parts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/SOFTWARE_FRAMEWORK/UTILS/parts.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/clocks.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/clocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/clocks.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/flash_fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/flash_fw.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/license.txt -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/nor_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/nor_flash.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/nor_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/nor_flash.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/printf-stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/printf-stdarg.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/printf-stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/printf-stdarg.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/startup.c -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/startup.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/src/wl_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/src/wl_fw.h -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifi_dnld/wifi_dnld.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifi_dnld/wifi_dnld.cproj -------------------------------------------------------------------------------- /0.9.0/firmwares/wifishield/wifishield.atsln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/firmwares/wifishield/wifishield.atsln -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/README.md -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/examples/eeprom_iteration/eeprom_iteration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/examples/eeprom_iteration/eeprom_iteration.ino -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/examples/eeprom_update/eeprom_update.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/examples/eeprom_update/eeprom_update.ino -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/examples/eeprom_write/eeprom_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/examples/eeprom_write/eeprom_write.ino -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/keywords.txt -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/library.properties -------------------------------------------------------------------------------- /0.9.0/libraries/EEPROM/src/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/EEPROM/src/EEPROM.h -------------------------------------------------------------------------------- /0.9.0/libraries/HID/examples/EnableMouse/EnableMouse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/HID/examples/EnableMouse/EnableMouse.ino -------------------------------------------------------------------------------- /0.9.0/libraries/HID/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/HID/keywords.txt -------------------------------------------------------------------------------- /0.9.0/libraries/HID/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/HID/library.properties -------------------------------------------------------------------------------- /0.9.0/libraries/HID/src/HID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/HID/src/HID.cpp -------------------------------------------------------------------------------- /0.9.0/libraries/HID/src/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/HID/src/HID.h -------------------------------------------------------------------------------- /0.9.0/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino -------------------------------------------------------------------------------- /0.9.0/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino -------------------------------------------------------------------------------- /0.9.0/libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /0.9.0/libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SPI/library.properties -------------------------------------------------------------------------------- /0.9.0/libraries/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /0.9.0/libraries/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SPI/src/SPI.h -------------------------------------------------------------------------------- /0.9.0/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino -------------------------------------------------------------------------------- /0.9.0/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino -------------------------------------------------------------------------------- /0.9.0/libraries/SoftwareSerial/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SoftwareSerial/keywords.txt -------------------------------------------------------------------------------- /0.9.0/libraries/SoftwareSerial/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SoftwareSerial/library.properties -------------------------------------------------------------------------------- /0.9.0/libraries/SoftwareSerial/src/SoftwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SoftwareSerial/src/SoftwareSerial.cpp -------------------------------------------------------------------------------- /0.9.0/libraries/SoftwareSerial/src/SoftwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/SoftwareSerial/src/SoftwareSerial.h -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/examples/i2c_scanner/i2c_scanner.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/examples/i2c_scanner/i2c_scanner.ino -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/examples/master_reader/master_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/examples/master_reader/master_reader.ino -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/examples/master_writer/master_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/examples/master_writer/master_writer.ino -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/examples/slave_receiver/slave_receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/examples/slave_receiver/slave_receiver.ino -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/examples/slave_sender/slave_sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/examples/slave_sender/slave_sender.ino -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/library.properties -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/src/Wire.cpp -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/src/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/src/Wire.h -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/src/utility/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/src/utility/twi.c -------------------------------------------------------------------------------- /0.9.0/libraries/Wire/src/utility/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/libraries/Wire/src/utility/twi.h -------------------------------------------------------------------------------- /0.9.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/platform.txt -------------------------------------------------------------------------------- /0.9.0/programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/programmers.txt -------------------------------------------------------------------------------- /0.9.0/variants/micro/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/0.9.0/variants/micro/pins_arduino.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/README.md -------------------------------------------------------------------------------- /package_razerduino_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/package_razerduino_index.json -------------------------------------------------------------------------------- /razerduino-0.9.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMetalMouse/razerduino/HEAD/razerduino-0.9.0.zip --------------------------------------------------------------------------------