├── LICENSE ├── README.md ├── firmware ├── usb_dfu_samd11 │ ├── hal_gpio.h │ ├── include │ │ ├── component │ │ │ ├── ac.h │ │ │ ├── adc.h │ │ │ ├── dac.h │ │ │ ├── dmac.h │ │ │ ├── dsu.h │ │ │ ├── eic.h │ │ │ ├── evsys.h │ │ │ ├── gclk.h │ │ │ ├── hmatrixb.h │ │ │ ├── mtb.h │ │ │ ├── nvmctrl.h │ │ │ ├── pac.h │ │ │ ├── pm.h │ │ │ ├── port.h │ │ │ ├── rtc.h │ │ │ ├── sercom.h │ │ │ ├── sysctrl.h │ │ │ ├── tc.h │ │ │ ├── tcc.h │ │ │ ├── usb.h │ │ │ └── wdt.h │ │ ├── core_cm0plus.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── instance │ │ │ ├── ac.h │ │ │ ├── adc.h │ │ │ ├── dac.h │ │ │ ├── dmac.h │ │ │ ├── dsu.h │ │ │ ├── eic.h │ │ │ ├── evsys.h │ │ │ ├── gclk.h │ │ │ ├── mtb.h │ │ │ ├── nvmctrl.h │ │ │ ├── pac0.h │ │ │ ├── pac1.h │ │ │ ├── pac2.h │ │ │ ├── pm.h │ │ │ ├── port.h │ │ │ ├── ptc.h │ │ │ ├── rtc.h │ │ │ ├── sbmatrix.h │ │ │ ├── sercom0.h │ │ │ ├── sercom1.h │ │ │ ├── sercom2.h │ │ │ ├── sysctrl.h │ │ │ ├── tc1.h │ │ │ ├── tc2.h │ │ │ ├── tcc0.h │ │ │ ├── usb.h │ │ │ └── wdt.h │ │ ├── pio │ │ │ ├── samd11c14a.h │ │ │ ├── samd11d14am.h │ │ │ ├── samd11d14as.h │ │ │ └── samd11d14au.h │ │ ├── samd11.h │ │ ├── samd11c14a.h │ │ ├── samd11d14am.h │ │ ├── samd11d14as.h │ │ └── samd11d14au.h │ ├── linker │ │ └── samd11d14.ld │ ├── main.c │ ├── make │ │ ├── .gitignore │ │ └── Makefile │ ├── nvm_data.h │ ├── startup_samd11.c │ ├── usb.c │ ├── usb.h │ ├── usb_descriptors.c │ ├── usb_descriptors.h │ ├── usb_dfu.c │ ├── usb_dfu.h │ ├── usb_std.c │ ├── usb_std.h │ └── utils.h ├── usb_dfu_samd51 │ ├── hal_gpio.h │ ├── include │ │ ├── component │ │ │ ├── ac.h │ │ │ ├── adc.h │ │ │ ├── aes.h │ │ │ ├── can.h │ │ │ ├── ccl.h │ │ │ ├── cmcc.h │ │ │ ├── dac.h │ │ │ ├── dmac.h │ │ │ ├── dsu.h │ │ │ ├── eic.h │ │ │ ├── evsys.h │ │ │ ├── freqm.h │ │ │ ├── gclk.h │ │ │ ├── hmatrixb.h │ │ │ ├── i2s.h │ │ │ ├── icm.h │ │ │ ├── mclk.h │ │ │ ├── nvmctrl.h │ │ │ ├── osc32kctrl.h │ │ │ ├── oscctrl.h │ │ │ ├── pac.h │ │ │ ├── pcc.h │ │ │ ├── pdec.h │ │ │ ├── pm.h │ │ │ ├── port.h │ │ │ ├── qspi.h │ │ │ ├── ramecc.h │ │ │ ├── rstc.h │ │ │ ├── rtc.h │ │ │ ├── sdhc.h │ │ │ ├── sercom.h │ │ │ ├── supc.h │ │ │ ├── tc.h │ │ │ ├── tcc.h │ │ │ ├── trng.h │ │ │ ├── usb.h │ │ │ └── wdt.h │ │ ├── core_cm4.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ ├── instance │ │ │ ├── ac.h │ │ │ ├── adc0.h │ │ │ ├── adc1.h │ │ │ ├── aes.h │ │ │ ├── can0.h │ │ │ ├── can1.h │ │ │ ├── ccl.h │ │ │ ├── cmcc.h │ │ │ ├── dac.h │ │ │ ├── dmac.h │ │ │ ├── dsu.h │ │ │ ├── eic.h │ │ │ ├── evsys.h │ │ │ ├── freqm.h │ │ │ ├── gclk.h │ │ │ ├── hmatrix.h │ │ │ ├── i2s.h │ │ │ ├── icm.h │ │ │ ├── mclk.h │ │ │ ├── nvmctrl.h │ │ │ ├── osc32kctrl.h │ │ │ ├── oscctrl.h │ │ │ ├── pac.h │ │ │ ├── pcc.h │ │ │ ├── pdec.h │ │ │ ├── pm.h │ │ │ ├── port.h │ │ │ ├── pukcc.h │ │ │ ├── qspi.h │ │ │ ├── ramecc.h │ │ │ ├── rstc.h │ │ │ ├── rtc.h │ │ │ ├── sdhc0.h │ │ │ ├── sdhc1.h │ │ │ ├── sercom0.h │ │ │ ├── sercom1.h │ │ │ ├── sercom2.h │ │ │ ├── sercom3.h │ │ │ ├── sercom4.h │ │ │ ├── sercom5.h │ │ │ ├── sercom6.h │ │ │ ├── sercom7.h │ │ │ ├── supc.h │ │ │ ├── tc0.h │ │ │ ├── tc1.h │ │ │ ├── tc2.h │ │ │ ├── tc3.h │ │ │ ├── tc4.h │ │ │ ├── tc5.h │ │ │ ├── tc6.h │ │ │ ├── tc7.h │ │ │ ├── tcc0.h │ │ │ ├── tcc1.h │ │ │ ├── tcc2.h │ │ │ ├── tcc3.h │ │ │ ├── tcc4.h │ │ │ ├── trng.h │ │ │ ├── usb.h │ │ │ └── wdt.h │ │ ├── pio │ │ │ ├── samd51g18a.h │ │ │ ├── samd51g19a.h │ │ │ ├── samd51j18a.h │ │ │ ├── samd51j19a.h │ │ │ ├── samd51j20a.h │ │ │ ├── samd51n19a.h │ │ │ ├── samd51n20a.h │ │ │ ├── samd51p19a.h │ │ │ └── samd51p20a.h │ │ ├── sam.h │ │ ├── samd51.h │ │ ├── samd51g18a.h │ │ ├── samd51g19a.h │ │ ├── samd51j18a.h │ │ ├── samd51j19a.h │ │ ├── samd51j20a.h │ │ ├── samd51n19a.h │ │ ├── samd51n20a.h │ │ ├── samd51p19a.h │ │ └── samd51p20a.h │ ├── linker │ │ └── samd51j20a.ld │ ├── main.c │ ├── make │ │ ├── .gitignore │ │ └── Makefile │ ├── nvm_data.h │ ├── startup.c │ ├── usb.c │ ├── usb.h │ ├── usb_descriptors.c │ ├── usb_descriptors.h │ ├── usb_dfu.c │ ├── usb_dfu.h │ ├── usb_std.c │ ├── usb_std.h │ └── utils.h ├── usb_hid_samd11 │ ├── astudio │ │ ├── bootloader.atsln │ │ └── bootloader.cproj │ ├── hal_gpio.h │ ├── include │ │ ├── component │ │ │ ├── ac.h │ │ │ ├── adc.h │ │ │ ├── dac.h │ │ │ ├── dmac.h │ │ │ ├── dsu.h │ │ │ ├── eic.h │ │ │ ├── evsys.h │ │ │ ├── gclk.h │ │ │ ├── hmatrixb.h │ │ │ ├── mtb.h │ │ │ ├── nvmctrl.h │ │ │ ├── pac.h │ │ │ ├── pm.h │ │ │ ├── port.h │ │ │ ├── rtc.h │ │ │ ├── sercom.h │ │ │ ├── sysctrl.h │ │ │ ├── tc.h │ │ │ ├── tcc.h │ │ │ ├── usb.h │ │ │ └── wdt.h │ │ ├── core_cm0plus.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── instance │ │ │ ├── ac.h │ │ │ ├── adc.h │ │ │ ├── dac.h │ │ │ ├── dmac.h │ │ │ ├── dsu.h │ │ │ ├── eic.h │ │ │ ├── evsys.h │ │ │ ├── gclk.h │ │ │ ├── mtb.h │ │ │ ├── nvmctrl.h │ │ │ ├── pac0.h │ │ │ ├── pac1.h │ │ │ ├── pac2.h │ │ │ ├── pm.h │ │ │ ├── port.h │ │ │ ├── rtc.h │ │ │ ├── sbmatrix.h │ │ │ ├── sercom0.h │ │ │ ├── sercom1.h │ │ │ ├── sercom2.h │ │ │ ├── sysctrl.h │ │ │ ├── tc1.h │ │ │ ├── tc2.h │ │ │ ├── tcc0.h │ │ │ ├── usb.h │ │ │ └── wdt.h │ │ ├── pio │ │ │ ├── samd11c14a.h │ │ │ ├── samd11d14am.h │ │ │ ├── samd11d14as.h │ │ │ └── samd11d14au.h │ │ ├── samd11.h │ │ ├── samd11c14a.h │ │ ├── samd11d14am.h │ │ ├── samd11d14as.h │ │ └── samd11d14au.h │ ├── linker │ │ └── samd11d14.ld │ ├── main.c │ ├── make │ │ ├── .gitignore │ │ └── Makefile │ ├── nvm_data.h │ ├── startup_samd11.c │ ├── usb.c │ ├── usb.h │ ├── usb_descriptors.c │ ├── usb_descriptors.h │ ├── usb_std.c │ ├── usb_std.h │ └── utils.h └── usb_hid_samd21 │ ├── astudio │ ├── bootloader.atsln │ └── bootloader.cproj │ ├── hal_gpio.h │ ├── include │ ├── component │ │ ├── ac.h │ │ ├── adc.h │ │ ├── dac.h │ │ ├── dmac.h │ │ ├── dsu.h │ │ ├── eic.h │ │ ├── evsys.h │ │ ├── gclk.h │ │ ├── hmatrixb.h │ │ ├── i2s.h │ │ ├── mtb.h │ │ ├── nvmctrl.h │ │ ├── pac.h │ │ ├── pm.h │ │ ├── port.h │ │ ├── rtc.h │ │ ├── sercom.h │ │ ├── sysctrl.h │ │ ├── tc.h │ │ ├── tcc.h │ │ ├── tcc_lighting.h │ │ ├── usb.h │ │ └── wdt.h │ ├── core_cm0plus.h │ ├── core_cmFunc.h │ ├── core_cmInstr.h │ ├── instance │ │ ├── ac.h │ │ ├── ac1.h │ │ ├── adc.h │ │ ├── dac.h │ │ ├── dmac.h │ │ ├── dsu.h │ │ ├── eic.h │ │ ├── evsys.h │ │ ├── gclk.h │ │ ├── i2s.h │ │ ├── mtb.h │ │ ├── nvmctrl.h │ │ ├── pac0.h │ │ ├── pac1.h │ │ ├── pac2.h │ │ ├── pm.h │ │ ├── port.h │ │ ├── rtc.h │ │ ├── sbmatrix.h │ │ ├── sercom0.h │ │ ├── sercom1.h │ │ ├── sercom2.h │ │ ├── sercom3.h │ │ ├── sercom4.h │ │ ├── sercom5.h │ │ ├── sysctrl.h │ │ ├── tc3.h │ │ ├── tc4.h │ │ ├── tc5.h │ │ ├── tc6.h │ │ ├── tc7.h │ │ ├── tcc0.h │ │ ├── tcc1.h │ │ ├── tcc2.h │ │ ├── usb.h │ │ └── wdt.h │ ├── pio │ │ ├── samd21e15a.h │ │ ├── samd21e15b.h │ │ ├── samd21e15bu.h │ │ ├── samd21e15l.h │ │ ├── samd21e16a.h │ │ ├── samd21e16b.h │ │ ├── samd21e16bu.h │ │ ├── samd21e16l.h │ │ ├── samd21e17a.h │ │ ├── samd21e18a.h │ │ ├── samd21g15a.h │ │ ├── samd21g15b.h │ │ ├── samd21g16a.h │ │ ├── samd21g16b.h │ │ ├── samd21g17a.h │ │ ├── samd21g17au.h │ │ ├── samd21g18a.h │ │ ├── samd21g18au.h │ │ ├── samd21j15a.h │ │ ├── samd21j15b.h │ │ ├── samd21j16a.h │ │ ├── samd21j16b.h │ │ ├── samd21j17a.h │ │ └── samd21j18a.h │ ├── samd21.h │ ├── samd21e15a.h │ ├── samd21e15b.h │ ├── samd21e15bu.h │ ├── samd21e15l.h │ ├── samd21e16a.h │ ├── samd21e16b.h │ ├── samd21e16bu.h │ ├── samd21e16l.h │ ├── samd21e17a.h │ ├── samd21e18a.h │ ├── samd21g15a.h │ ├── samd21g15b.h │ ├── samd21g16a.h │ ├── samd21g16b.h │ ├── samd21g17a.h │ ├── samd21g17au.h │ ├── samd21g18a.h │ ├── samd21g18au.h │ ├── samd21j15a.h │ ├── samd21j15b.h │ ├── samd21j16a.h │ ├── samd21j16b.h │ ├── samd21j17a.h │ └── samd21j18a.h │ ├── linker │ └── samd21_bl.ld │ ├── main.c │ ├── make │ ├── .gitignore │ └── Makefile │ ├── nvm_data.h │ ├── startup.c │ ├── usb.c │ ├── usb.h │ ├── usb_descriptors.c │ ├── usb_descriptors.h │ ├── usb_std.c │ ├── usb_std.h │ └── utils.h └── software └── usb_hid ├── .gitignore ├── Makefile ├── bin ├── hid_boot ├── hid_boot.exe └── hid_boot_v0.2.exe ├── main.c ├── usb_hid.h ├── usb_hid_lin.c └── usb_hid_win.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/README.md -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/hal_gpio.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/ac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/adc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/dac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/dmac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/dsu.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/eic.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/evsys.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/gclk.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/hmatrixb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/hmatrixb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/mtb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/nvmctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/pac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/pm.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/port.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/rtc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/sercom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/sercom.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/sysctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/tc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/tcc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/usb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/component/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/component/wdt.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/core_cm0plus.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/core_cmFunc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/core_cmInstr.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/ac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/adc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/dac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/dmac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/dsu.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/eic.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/evsys.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/gclk.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/mtb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/nvmctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/pac0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/pac0.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/pac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/pac1.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/pac2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/pac2.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/pm.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/port.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/ptc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/ptc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/rtc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/sbmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/sbmatrix.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/sercom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/sercom0.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/sercom1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/sercom1.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/sercom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/sercom2.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/sysctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/tc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/tc1.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/tc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/tc2.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/tcc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/tcc0.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/usb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/instance/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/instance/wdt.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/pio/samd11c14a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/pio/samd11c14a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/pio/samd11d14am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/pio/samd11d14am.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/pio/samd11d14as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/pio/samd11d14as.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/pio/samd11d14au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/pio/samd11d14au.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/samd11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/samd11.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/samd11c14a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/samd11c14a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/samd11d14am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/samd11d14am.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/samd11d14as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/samd11d14as.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/include/samd11d14au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/include/samd11d14au.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/linker/samd11d14.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/linker/samd11d14.ld -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/main.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/make/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/make/Makefile -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/nvm_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/nvm_data.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/startup_samd11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/startup_samd11.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/usb.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/usb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/usb_descriptors.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/usb_descriptors.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/usb_dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/usb_dfu.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/usb_dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/usb_dfu.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/usb_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/usb_std.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/usb_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/usb_std.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd11/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd11/utils.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/hal_gpio.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/ac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/adc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/aes.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/can.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/ccl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/ccl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/cmcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/cmcc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/dac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/dmac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/dsu.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/eic.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/evsys.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/freqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/freqm.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/gclk.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/hmatrixb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/hmatrixb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/i2s.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/icm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/icm.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/mclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/mclk.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/nvmctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/osc32kctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/osc32kctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/oscctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/oscctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/pac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/pcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/pcc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/pdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/pdec.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/pm.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/port.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/qspi.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/ramecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/ramecc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/rstc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/rstc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/rtc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/sdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/sdhc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/sercom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/sercom.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/supc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/supc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/tc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/tcc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/trng.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/usb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/component/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/component/wdt.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/core_cm4.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/core_cmFunc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/core_cmInstr.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/core_cmSimd.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/ac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/adc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/adc0.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/adc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/adc1.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/aes.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/can0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/can0.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/can1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/can1.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/ccl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/ccl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/cmcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/cmcc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/dac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/dmac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/dsu.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/eic.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/evsys.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/freqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/freqm.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/gclk.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/hmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/hmatrix.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/i2s.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/icm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/icm.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/mclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/mclk.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/nvmctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/osc32kctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/osc32kctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/oscctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/oscctrl.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/pac.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/pcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/pcc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/pdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/pdec.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/pm.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/port.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/pukcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/pukcc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/qspi.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/ramecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/ramecc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/rstc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/rstc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/rtc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sdhc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sdhc0.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sdhc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sdhc1.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sercom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sercom0.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sercom1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sercom1.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sercom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sercom2.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sercom3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sercom3.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sercom4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sercom4.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sercom5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sercom5.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sercom6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sercom6.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/sercom7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/sercom7.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/supc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/supc.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tc0.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tc1.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tc2.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tc3.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tc4.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tc5.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tc6.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tc7.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tcc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tcc0.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tcc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tcc1.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tcc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tcc2.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tcc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tcc3.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/tcc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/tcc4.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/trng.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/usb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/instance/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/instance/wdt.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/pio/samd51g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/pio/samd51g18a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/pio/samd51g19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/pio/samd51g19a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/pio/samd51j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/pio/samd51j18a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/pio/samd51j19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/pio/samd51j19a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/pio/samd51j20a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/pio/samd51j20a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/pio/samd51n19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/pio/samd51n19a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/pio/samd51n20a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/pio/samd51n20a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/pio/samd51p19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/pio/samd51p19a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/pio/samd51p20a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/pio/samd51p20a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/sam.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51g18a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51g19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51g19a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51j18a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51j19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51j19a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51j20a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51j20a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51n19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51n19a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51n20a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51n20a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51p19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51p19a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/include/samd51p20a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/include/samd51p20a.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/linker/samd51j20a.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/linker/samd51j20a.ld -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/main.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/make/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/make/Makefile -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/nvm_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/nvm_data.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/startup.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/usb.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/usb.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/usb_descriptors.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/usb_descriptors.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/usb_dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/usb_dfu.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/usb_dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/usb_dfu.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/usb_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/usb_std.c -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/usb_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/usb_std.h -------------------------------------------------------------------------------- /firmware/usb_dfu_samd51/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_dfu_samd51/utils.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/astudio/bootloader.atsln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/astudio/bootloader.atsln -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/astudio/bootloader.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/astudio/bootloader.cproj -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/hal_gpio.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/ac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/adc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/dac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/dmac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/dsu.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/eic.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/evsys.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/gclk.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/hmatrixb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/hmatrixb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/mtb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/nvmctrl.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/pac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/pm.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/port.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/rtc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/sercom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/sercom.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/sysctrl.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/tc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/tcc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/usb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/component/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/component/wdt.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/core_cm0plus.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/core_cmFunc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/core_cmInstr.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/ac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/adc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/dac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/dmac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/dsu.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/eic.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/evsys.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/gclk.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/mtb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/nvmctrl.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/pac0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/pac0.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/pac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/pac1.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/pac2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/pac2.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/pm.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/port.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/rtc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/sbmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/sbmatrix.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/sercom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/sercom0.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/sercom1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/sercom1.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/sercom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/sercom2.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/sysctrl.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/tc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/tc1.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/tc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/tc2.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/tcc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/tcc0.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/usb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/instance/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/instance/wdt.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/pio/samd11c14a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/pio/samd11c14a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/pio/samd11d14am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/pio/samd11d14am.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/pio/samd11d14as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/pio/samd11d14as.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/pio/samd11d14au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/pio/samd11d14au.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/samd11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/samd11.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/samd11c14a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/samd11c14a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/samd11d14am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/samd11d14am.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/samd11d14as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/samd11d14as.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/include/samd11d14au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/include/samd11d14au.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/linker/samd11d14.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/linker/samd11d14.ld -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/main.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/make/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/make/Makefile -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/nvm_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/nvm_data.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/startup_samd11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/startup_samd11.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/usb.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/usb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/usb_descriptors.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/usb_descriptors.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/usb_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/usb_std.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/usb_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/usb_std.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd11/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd11/utils.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/astudio/bootloader.atsln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/astudio/bootloader.atsln -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/astudio/bootloader.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/astudio/bootloader.cproj -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/hal_gpio.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/ac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/adc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/dac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/dmac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/dsu.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/eic.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/evsys.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/gclk.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/hmatrixb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/hmatrixb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/i2s.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/mtb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/nvmctrl.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/pac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/pm.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/port.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/rtc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/sercom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/sercom.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/sysctrl.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/tc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/tcc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/tcc_lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/tcc_lighting.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/usb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/component/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/component/wdt.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/core_cm0plus.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/core_cmFunc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/core_cmInstr.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/ac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/ac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/ac1.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/adc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/dac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/dmac.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/dsu.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/eic.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/evsys.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/gclk.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/i2s.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/mtb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/nvmctrl.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/pac0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/pac0.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/pac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/pac1.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/pac2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/pac2.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/pm.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/port.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/rtc.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/sbmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/sbmatrix.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/sercom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/sercom0.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/sercom1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/sercom1.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/sercom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/sercom2.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/sercom3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/sercom3.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/sercom4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/sercom4.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/sercom5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/sercom5.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/sysctrl.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/tc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/tc3.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/tc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/tc4.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/tc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/tc5.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/tc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/tc6.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/tc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/tc7.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/tcc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/tcc0.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/tcc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/tcc1.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/tcc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/tcc2.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/usb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/instance/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/instance/wdt.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e15a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e15b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e15bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e15bu.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e15l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e15l.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e16a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e16b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e16bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e16bu.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e16l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e16l.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e17a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21e18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21e18a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21g15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21g15a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21g15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21g15b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21g16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21g16a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21g16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21g16b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21g17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21g17a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21g17au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21g17au.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21g18a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21g18au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21g18au.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21j15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21j15a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21j15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21j15b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21j16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21j16a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21j16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21j16b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21j17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21j17a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/pio/samd21j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/pio/samd21j18a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e15a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e15b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e15bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e15bu.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e15l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e15l.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e16a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e16b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e16bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e16bu.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e16l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e16l.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e17a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21e18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21e18a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21g15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21g15a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21g15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21g15b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21g16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21g16a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21g16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21g16b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21g17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21g17a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21g17au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21g17au.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21g18a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21g18au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21g18au.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21j15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21j15a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21j15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21j15b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21j16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21j16a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21j16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21j16b.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21j17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21j17a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/include/samd21j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/include/samd21j18a.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/linker/samd21_bl.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/linker/samd21_bl.ld -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/main.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/make/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/make/Makefile -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/nvm_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/nvm_data.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/startup.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/usb.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/usb.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/usb_descriptors.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/usb_descriptors.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/usb_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/usb_std.c -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/usb_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/usb_std.h -------------------------------------------------------------------------------- /firmware/usb_hid_samd21/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/firmware/usb_hid_samd21/utils.h -------------------------------------------------------------------------------- /software/usb_hid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/software/usb_hid/.gitignore -------------------------------------------------------------------------------- /software/usb_hid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/software/usb_hid/Makefile -------------------------------------------------------------------------------- /software/usb_hid/bin/hid_boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/software/usb_hid/bin/hid_boot -------------------------------------------------------------------------------- /software/usb_hid/bin/hid_boot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/software/usb_hid/bin/hid_boot.exe -------------------------------------------------------------------------------- /software/usb_hid/bin/hid_boot_v0.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/software/usb_hid/bin/hid_boot_v0.2.exe -------------------------------------------------------------------------------- /software/usb_hid/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/software/usb_hid/main.c -------------------------------------------------------------------------------- /software/usb_hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/software/usb_hid/usb_hid.h -------------------------------------------------------------------------------- /software/usb_hid/usb_hid_lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/software/usb_hid/usb_hid_lin.c -------------------------------------------------------------------------------- /software/usb_hid/usb_hid_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/bootloaders/HEAD/software/usb_hid/usb_hid_win.c --------------------------------------------------------------------------------