├── README.md ├── cli ├── .gitignore ├── Makefile ├── adc.c ├── adc.h ├── dac.c ├── dac.h ├── dgw.h ├── dgw_lin.c ├── dgw_win.c ├── gpio.c ├── gpio.h ├── i2c.c ├── i2c.h ├── main.c ├── main.h ├── pwm.c ├── pwm.h ├── spi.c ├── spi.h ├── test.c ├── test.h ├── version.c └── version.h └── embedded ├── adc.c ├── adc.h ├── astudio ├── dgw.atsln └── dgw.cproj ├── dac.c ├── dac.h ├── debug.c ├── debug.h ├── gpio.c ├── gpio.h ├── hal_gpio.h ├── i2c_master.c ├── i2c_master.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 └── samd21j18.ld ├── main.c ├── make ├── .gitignore └── Makefile ├── nvm_data.h ├── pwm.c ├── pwm.h ├── spi_master.c ├── spi_master.h ├── startup_samd21.c ├── udc.c ├── udc.h ├── usb.c ├── usb.h ├── usb_descriptors.c ├── usb_descriptors.h └── utils.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/README.md -------------------------------------------------------------------------------- /cli/.gitignore: -------------------------------------------------------------------------------- 1 | dgw 2 | dgw.exe 3 | -------------------------------------------------------------------------------- /cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/Makefile -------------------------------------------------------------------------------- /cli/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/adc.c -------------------------------------------------------------------------------- /cli/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/adc.h -------------------------------------------------------------------------------- /cli/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/dac.c -------------------------------------------------------------------------------- /cli/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/dac.h -------------------------------------------------------------------------------- /cli/dgw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/dgw.h -------------------------------------------------------------------------------- /cli/dgw_lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/dgw_lin.c -------------------------------------------------------------------------------- /cli/dgw_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/dgw_win.c -------------------------------------------------------------------------------- /cli/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/gpio.c -------------------------------------------------------------------------------- /cli/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/gpio.h -------------------------------------------------------------------------------- /cli/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/i2c.c -------------------------------------------------------------------------------- /cli/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/i2c.h -------------------------------------------------------------------------------- /cli/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/main.c -------------------------------------------------------------------------------- /cli/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/main.h -------------------------------------------------------------------------------- /cli/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/pwm.c -------------------------------------------------------------------------------- /cli/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/pwm.h -------------------------------------------------------------------------------- /cli/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/spi.c -------------------------------------------------------------------------------- /cli/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/spi.h -------------------------------------------------------------------------------- /cli/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/test.c -------------------------------------------------------------------------------- /cli/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/test.h -------------------------------------------------------------------------------- /cli/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/version.c -------------------------------------------------------------------------------- /cli/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/cli/version.h -------------------------------------------------------------------------------- /embedded/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/adc.c -------------------------------------------------------------------------------- /embedded/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/adc.h -------------------------------------------------------------------------------- /embedded/astudio/dgw.atsln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/astudio/dgw.atsln -------------------------------------------------------------------------------- /embedded/astudio/dgw.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/astudio/dgw.cproj -------------------------------------------------------------------------------- /embedded/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/dac.c -------------------------------------------------------------------------------- /embedded/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/dac.h -------------------------------------------------------------------------------- /embedded/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/debug.c -------------------------------------------------------------------------------- /embedded/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/debug.h -------------------------------------------------------------------------------- /embedded/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/gpio.c -------------------------------------------------------------------------------- /embedded/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/gpio.h -------------------------------------------------------------------------------- /embedded/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/hal_gpio.h -------------------------------------------------------------------------------- /embedded/i2c_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/i2c_master.c -------------------------------------------------------------------------------- /embedded/i2c_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/i2c_master.h -------------------------------------------------------------------------------- /embedded/include/component/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/ac.h -------------------------------------------------------------------------------- /embedded/include/component/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/adc.h -------------------------------------------------------------------------------- /embedded/include/component/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/dac.h -------------------------------------------------------------------------------- /embedded/include/component/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/dmac.h -------------------------------------------------------------------------------- /embedded/include/component/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/dsu.h -------------------------------------------------------------------------------- /embedded/include/component/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/eic.h -------------------------------------------------------------------------------- /embedded/include/component/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/evsys.h -------------------------------------------------------------------------------- /embedded/include/component/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/gclk.h -------------------------------------------------------------------------------- /embedded/include/component/hmatrixb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/hmatrixb.h -------------------------------------------------------------------------------- /embedded/include/component/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/i2s.h -------------------------------------------------------------------------------- /embedded/include/component/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/mtb.h -------------------------------------------------------------------------------- /embedded/include/component/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/nvmctrl.h -------------------------------------------------------------------------------- /embedded/include/component/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/pac.h -------------------------------------------------------------------------------- /embedded/include/component/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/pm.h -------------------------------------------------------------------------------- /embedded/include/component/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/port.h -------------------------------------------------------------------------------- /embedded/include/component/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/rtc.h -------------------------------------------------------------------------------- /embedded/include/component/sercom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/sercom.h -------------------------------------------------------------------------------- /embedded/include/component/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/sysctrl.h -------------------------------------------------------------------------------- /embedded/include/component/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/tc.h -------------------------------------------------------------------------------- /embedded/include/component/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/tcc.h -------------------------------------------------------------------------------- /embedded/include/component/tcc_lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/tcc_lighting.h -------------------------------------------------------------------------------- /embedded/include/component/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/usb.h -------------------------------------------------------------------------------- /embedded/include/component/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/component/wdt.h -------------------------------------------------------------------------------- /embedded/include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/core_cm0plus.h -------------------------------------------------------------------------------- /embedded/include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/core_cmFunc.h -------------------------------------------------------------------------------- /embedded/include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/core_cmInstr.h -------------------------------------------------------------------------------- /embedded/include/instance/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/ac.h -------------------------------------------------------------------------------- /embedded/include/instance/ac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/ac1.h -------------------------------------------------------------------------------- /embedded/include/instance/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/adc.h -------------------------------------------------------------------------------- /embedded/include/instance/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/dac.h -------------------------------------------------------------------------------- /embedded/include/instance/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/dmac.h -------------------------------------------------------------------------------- /embedded/include/instance/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/dsu.h -------------------------------------------------------------------------------- /embedded/include/instance/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/eic.h -------------------------------------------------------------------------------- /embedded/include/instance/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/evsys.h -------------------------------------------------------------------------------- /embedded/include/instance/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/gclk.h -------------------------------------------------------------------------------- /embedded/include/instance/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/i2s.h -------------------------------------------------------------------------------- /embedded/include/instance/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/mtb.h -------------------------------------------------------------------------------- /embedded/include/instance/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/nvmctrl.h -------------------------------------------------------------------------------- /embedded/include/instance/pac0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/pac0.h -------------------------------------------------------------------------------- /embedded/include/instance/pac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/pac1.h -------------------------------------------------------------------------------- /embedded/include/instance/pac2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/pac2.h -------------------------------------------------------------------------------- /embedded/include/instance/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/pm.h -------------------------------------------------------------------------------- /embedded/include/instance/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/port.h -------------------------------------------------------------------------------- /embedded/include/instance/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/rtc.h -------------------------------------------------------------------------------- /embedded/include/instance/sbmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/sbmatrix.h -------------------------------------------------------------------------------- /embedded/include/instance/sercom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/sercom0.h -------------------------------------------------------------------------------- /embedded/include/instance/sercom1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/sercom1.h -------------------------------------------------------------------------------- /embedded/include/instance/sercom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/sercom2.h -------------------------------------------------------------------------------- /embedded/include/instance/sercom3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/sercom3.h -------------------------------------------------------------------------------- /embedded/include/instance/sercom4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/sercom4.h -------------------------------------------------------------------------------- /embedded/include/instance/sercom5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/sercom5.h -------------------------------------------------------------------------------- /embedded/include/instance/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/sysctrl.h -------------------------------------------------------------------------------- /embedded/include/instance/tc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/tc3.h -------------------------------------------------------------------------------- /embedded/include/instance/tc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/tc4.h -------------------------------------------------------------------------------- /embedded/include/instance/tc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/tc5.h -------------------------------------------------------------------------------- /embedded/include/instance/tc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/tc6.h -------------------------------------------------------------------------------- /embedded/include/instance/tc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/tc7.h -------------------------------------------------------------------------------- /embedded/include/instance/tcc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/tcc0.h -------------------------------------------------------------------------------- /embedded/include/instance/tcc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/tcc1.h -------------------------------------------------------------------------------- /embedded/include/instance/tcc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/tcc2.h -------------------------------------------------------------------------------- /embedded/include/instance/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/usb.h -------------------------------------------------------------------------------- /embedded/include/instance/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/instance/wdt.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e15a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e15b.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e15bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e15bu.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e15l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e15l.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e16a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e16b.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e16bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e16bu.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e16l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e16l.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e17a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21e18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21e18a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21g15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21g15a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21g15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21g15b.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21g16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21g16a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21g16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21g16b.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21g17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21g17a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21g17au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21g17au.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21g18a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21g18au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21g18au.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21j15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21j15a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21j15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21j15b.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21j16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21j16a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21j16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21j16b.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21j17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21j17a.h -------------------------------------------------------------------------------- /embedded/include/pio/samd21j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/pio/samd21j18a.h -------------------------------------------------------------------------------- /embedded/include/samd21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21.h -------------------------------------------------------------------------------- /embedded/include/samd21e15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e15a.h -------------------------------------------------------------------------------- /embedded/include/samd21e15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e15b.h -------------------------------------------------------------------------------- /embedded/include/samd21e15bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e15bu.h -------------------------------------------------------------------------------- /embedded/include/samd21e15l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e15l.h -------------------------------------------------------------------------------- /embedded/include/samd21e16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e16a.h -------------------------------------------------------------------------------- /embedded/include/samd21e16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e16b.h -------------------------------------------------------------------------------- /embedded/include/samd21e16bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e16bu.h -------------------------------------------------------------------------------- /embedded/include/samd21e16l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e16l.h -------------------------------------------------------------------------------- /embedded/include/samd21e17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e17a.h -------------------------------------------------------------------------------- /embedded/include/samd21e18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21e18a.h -------------------------------------------------------------------------------- /embedded/include/samd21g15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21g15a.h -------------------------------------------------------------------------------- /embedded/include/samd21g15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21g15b.h -------------------------------------------------------------------------------- /embedded/include/samd21g16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21g16a.h -------------------------------------------------------------------------------- /embedded/include/samd21g16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21g16b.h -------------------------------------------------------------------------------- /embedded/include/samd21g17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21g17a.h -------------------------------------------------------------------------------- /embedded/include/samd21g17au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21g17au.h -------------------------------------------------------------------------------- /embedded/include/samd21g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21g18a.h -------------------------------------------------------------------------------- /embedded/include/samd21g18au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21g18au.h -------------------------------------------------------------------------------- /embedded/include/samd21j15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21j15a.h -------------------------------------------------------------------------------- /embedded/include/samd21j15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21j15b.h -------------------------------------------------------------------------------- /embedded/include/samd21j16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21j16a.h -------------------------------------------------------------------------------- /embedded/include/samd21j16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21j16b.h -------------------------------------------------------------------------------- /embedded/include/samd21j17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21j17a.h -------------------------------------------------------------------------------- /embedded/include/samd21j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/include/samd21j18a.h -------------------------------------------------------------------------------- /embedded/linker/samd21j18.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/linker/samd21j18.ld -------------------------------------------------------------------------------- /embedded/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/main.c -------------------------------------------------------------------------------- /embedded/make/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /embedded/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/make/Makefile -------------------------------------------------------------------------------- /embedded/nvm_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/nvm_data.h -------------------------------------------------------------------------------- /embedded/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/pwm.c -------------------------------------------------------------------------------- /embedded/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/pwm.h -------------------------------------------------------------------------------- /embedded/spi_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/spi_master.c -------------------------------------------------------------------------------- /embedded/spi_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/spi_master.h -------------------------------------------------------------------------------- /embedded/startup_samd21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/startup_samd21.c -------------------------------------------------------------------------------- /embedded/udc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/udc.c -------------------------------------------------------------------------------- /embedded/udc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/udc.h -------------------------------------------------------------------------------- /embedded/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/usb.c -------------------------------------------------------------------------------- /embedded/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/usb.h -------------------------------------------------------------------------------- /embedded/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/usb_descriptors.c -------------------------------------------------------------------------------- /embedded/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/usb_descriptors.h -------------------------------------------------------------------------------- /embedded/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataradov/dgw/HEAD/embedded/utils.h --------------------------------------------------------------------------------