├── Makefile ├── README.md ├── audiotest.h ├── audiotest.pcf ├── audiotest.v ├── audiotest_up5k.pcf ├── board ├── cam_rs_274x.cam ├── gerber.zip ├── zmFPGA.brd ├── zmFPGA.pdf ├── zmFPGA.sch ├── zmJackBoard.brd ├── zmJackBoard.pdf ├── zmJackBoard.pro └── zmJackBoard.sch ├── hexgen.php ├── icestorm └── Dockerfile ├── pcm5102_ice40hx4k.jpg ├── samd21e18a ├── Makefile ├── audiotest.h ├── openocd.cfg ├── xdk-asf │ ├── cmsis │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm3.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ ├── core_sc000.h │ │ └── core_sc300.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 │ │ ├── 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 │ │ │ ├── samd21g15l.h │ │ │ ├── samd21g16a.h │ │ │ ├── samd21g16b.h │ │ │ ├── samd21g16l.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 │ │ ├── samd21g15l.h │ │ ├── samd21g16a.h │ │ ├── samd21g16b.h │ │ ├── samd21g16l.h │ │ ├── samd21g17a.h │ │ ├── samd21g17au.h │ │ ├── samd21g18a.h │ │ ├── samd21g18au.h │ │ ├── samd21j15a.h │ │ ├── samd21j15b.h │ │ ├── samd21j16a.h │ │ ├── samd21j16b.h │ │ ├── samd21j17a.h │ │ └── samd21j18a.h │ ├── samd21e18a_flash.ld │ ├── samd21e18a_sram.ld │ ├── startup_samd21.c │ ├── system_samd21.c │ └── system_samd21.h └── zmSAMD21.c └── sin_pi2.php /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/README.md -------------------------------------------------------------------------------- /audiotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/audiotest.h -------------------------------------------------------------------------------- /audiotest.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/audiotest.pcf -------------------------------------------------------------------------------- /audiotest.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/audiotest.v -------------------------------------------------------------------------------- /audiotest_up5k.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/audiotest_up5k.pcf -------------------------------------------------------------------------------- /board/cam_rs_274x.cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/board/cam_rs_274x.cam -------------------------------------------------------------------------------- /board/gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/board/gerber.zip -------------------------------------------------------------------------------- /board/zmFPGA.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/board/zmFPGA.brd -------------------------------------------------------------------------------- /board/zmFPGA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/board/zmFPGA.pdf -------------------------------------------------------------------------------- /board/zmFPGA.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/board/zmFPGA.sch -------------------------------------------------------------------------------- /board/zmJackBoard.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/board/zmJackBoard.brd -------------------------------------------------------------------------------- /board/zmJackBoard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/board/zmJackBoard.pdf -------------------------------------------------------------------------------- /board/zmJackBoard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/board/zmJackBoard.pro -------------------------------------------------------------------------------- /board/zmJackBoard.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/board/zmJackBoard.sch -------------------------------------------------------------------------------- /hexgen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/hexgen.php -------------------------------------------------------------------------------- /icestorm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/icestorm/Dockerfile -------------------------------------------------------------------------------- /pcm5102_ice40hx4k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/pcm5102_ice40hx4k.jpg -------------------------------------------------------------------------------- /samd21e18a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/Makefile -------------------------------------------------------------------------------- /samd21e18a/audiotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/audiotest.h -------------------------------------------------------------------------------- /samd21e18a/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/openocd.cfg -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/arm_common_tables.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/arm_const_structs.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/arm_math.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_cm0.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_cm0plus.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_cm3.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_cm4.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_cm7.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_cmFunc.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_cmInstr.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_cmSimd.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_sc000.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/cmsis/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/cmsis/core_sc300.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/ac.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/adc.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/dac.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/dmac.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/dsu.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/eic.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/evsys.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/gclk.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/hmatrixb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/hmatrixb.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/i2s.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/mtb.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/nvmctrl.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/pac.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/pm.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/port.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/rtc.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/sercom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/sercom.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/sysctrl.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/tc.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/tcc.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/tcc_lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/tcc_lighting.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/usb.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/component/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/component/wdt.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/ac.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/ac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/ac1.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/adc.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/dac.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/dmac.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/dsu.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/eic.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/evsys.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/gclk.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/i2s.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/mtb.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/nvmctrl.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/pac0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/pac0.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/pac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/pac1.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/pac2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/pac2.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/pm.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/port.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/rtc.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/sbmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/sbmatrix.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/sercom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/sercom0.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/sercom1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/sercom1.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/sercom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/sercom2.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/sercom3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/sercom3.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/sercom4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/sercom4.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/sercom5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/sercom5.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/sysctrl.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/tc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/tc3.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/tc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/tc4.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/tc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/tc5.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/tc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/tc6.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/tc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/tc7.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/tcc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/tcc0.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/tcc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/tcc1.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/tcc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/tcc2.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/usb.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/instance/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/instance/wdt.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e15a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e15b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e15bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e15bu.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e15l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e15l.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e16a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e16b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e16bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e16bu.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e16l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e16l.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e17a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21e18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21e18a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g15a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g15b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g15l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g15l.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g16a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g16b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g16l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g16l.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g17a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g17au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g17au.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g18a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21g18au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21g18au.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21j15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21j15a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21j15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21j15b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21j16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21j16a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21j16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21j16b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21j17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21j17a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/pio/samd21j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/pio/samd21j18a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e15a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e15b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e15bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e15bu.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e15l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e15l.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e16a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e16b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e16bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e16bu.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e16l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e16l.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e17a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21e18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21e18a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g15a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g15b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g15l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g15l.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g16a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g16b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g16l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g16l.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g17a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g17au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g17au.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g18a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21g18au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21g18au.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21j15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21j15a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21j15b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21j15b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21j16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21j16a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21j16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21j16b.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21j17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21j17a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/include/samd21j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/include/samd21j18a.h -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/samd21e18a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/samd21e18a_flash.ld -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/samd21e18a_sram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/samd21e18a_sram.ld -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/startup_samd21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/startup_samd21.c -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/system_samd21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/system_samd21.c -------------------------------------------------------------------------------- /samd21e18a/xdk-asf/system_samd21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/xdk-asf/system_samd21.h -------------------------------------------------------------------------------- /samd21e18a/zmSAMD21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/samd21e18a/zmSAMD21.c -------------------------------------------------------------------------------- /sin_pi2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noscene/ice40_audio/HEAD/sin_pi2.php --------------------------------------------------------------------------------