├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── firmware ├── example_001_ledblink │ ├── Makefile │ └── main.cpp ├── samlib │ ├── pin.h │ └── tc.h └── vendor │ ├── gcc │ ├── gcc │ │ ├── samr34j16b_flash.ld │ │ ├── samr34j16b_sram.ld │ │ ├── samr34j17b_flash.ld │ │ ├── samr34j17b_sram.ld │ │ ├── samr34j18b_flash.ld │ │ ├── samr34j18b_sram.ld │ │ └── startup_samr34.c │ └── system_samr34.c │ └── include │ ├── component-version.h │ ├── component │ ├── ac.h │ ├── adc.h │ ├── aes.h │ ├── ccl.h │ ├── dac.h │ ├── dmac.h │ ├── dsu.h │ ├── eic.h │ ├── evsys.h │ ├── gclk.h │ ├── mclk.h │ ├── mtb.h │ ├── nvmctrl.h │ ├── osc32kctrl.h │ ├── oscctrl.h │ ├── pac.h │ ├── pm.h │ ├── port.h │ ├── rstc.h │ ├── rtc.h │ ├── sercom.h │ ├── supc.h │ ├── tc.h │ ├── tcc.h │ ├── trng.h │ ├── usb.h │ └── wdt.h │ ├── core_cm0plus.h │ ├── core_cmFunc.h │ ├── core_cmInstr.h │ ├── instance │ ├── ac.h │ ├── adc.h │ ├── aes.h │ ├── ccl.h │ ├── dac.h │ ├── dmac.h │ ├── dsu.h │ ├── eic.h │ ├── evsys.h │ ├── gclk.h │ ├── mclk.h │ ├── mtb.h │ ├── nvmctrl.h │ ├── osc32kctrl.h │ ├── oscctrl.h │ ├── pac.h │ ├── pm.h │ ├── port.h │ ├── ptc.h │ ├── rstc.h │ ├── rtc.h │ ├── sercom0.h │ ├── sercom1.h │ ├── sercom2.h │ ├── sercom3.h │ ├── sercom4.h │ ├── sercom5.h │ ├── supc.h │ ├── tc0.h │ ├── tc1.h │ ├── tc2.h │ ├── tc3.h │ ├── tc4.h │ ├── tcc0.h │ ├── tcc1.h │ ├── tcc2.h │ ├── trng.h │ ├── usb.h │ └── wdt.h │ ├── pio │ ├── samr34j16b.h │ ├── samr34j17b.h │ └── samr34j18b.h │ ├── sam.h │ ├── samr34.h │ ├── samr34j16b.h │ ├── samr34j17b.h │ ├── samr34j18b.h │ └── system_samr34.h ├── hardware ├── gps-v0.1a │ ├── fp-lib-table │ ├── gpsDaughterBoard-cache.lib │ ├── gpsDaughterBoard.kicad_pcb │ ├── gpsDaughterBoard.pro │ ├── gpsDaughterBoard.sch │ ├── ref │ │ └── outline.dxf │ └── sym-lib-table ├── panel_v0.1a │ ├── gpsLoggerLoRa_w_gps_panel.kicad_pcb │ └── gpsLoggerLoRa_w_gps_panel.pro ├── v0.1a │ ├── SAMR34.sch │ ├── USB.sch │ ├── fp-lib-table │ ├── gpsLoggerLoRa-cache.lib │ ├── gpsLoggerLoRa.kicad_pcb │ ├── gpsLoggerLoRa.pro │ ├── gpsLoggerLoRa.sch │ ├── memio.sch │ ├── ref │ │ ├── gpsLoggerLora_logo.kicad_mod │ │ ├── logo.png │ │ └── outline.dxf │ └── sym-lib-table └── v0.1b │ ├── SAMR34.sch │ ├── USB.sch │ ├── fp-lib-table │ ├── gpsLoggerLoRa-cache.lib │ ├── gpsLoggerLoRa.kicad_pcb │ ├── gpsLoggerLoRa.pro │ ├── gpsLoggerLoRa.sch │ ├── memio.sch │ ├── ref │ ├── gpsLoggerLora_logo.kicad_mod │ ├── logo.png │ └── outline.dxf │ └── sym-lib-table └── img ├── gpsLoggerLora_v0.1a_proto_001.jpg ├── gpsLoggerLora_v0.1a_proto_002.jpg ├── gpsloggerlora_v0.1a_front.jpg ├── gpsloggerlora_v0.1a_pcb.jpg └── gpsloggerlora_v0.1a_side.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/README.md -------------------------------------------------------------------------------- /firmware/example_001_ledblink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/example_001_ledblink/Makefile -------------------------------------------------------------------------------- /firmware/example_001_ledblink/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/example_001_ledblink/main.cpp -------------------------------------------------------------------------------- /firmware/samlib/pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/samlib/pin.h -------------------------------------------------------------------------------- /firmware/samlib/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/samlib/tc.h -------------------------------------------------------------------------------- /firmware/vendor/gcc/gcc/samr34j16b_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/gcc/gcc/samr34j16b_flash.ld -------------------------------------------------------------------------------- /firmware/vendor/gcc/gcc/samr34j16b_sram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/gcc/gcc/samr34j16b_sram.ld -------------------------------------------------------------------------------- /firmware/vendor/gcc/gcc/samr34j17b_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/gcc/gcc/samr34j17b_flash.ld -------------------------------------------------------------------------------- /firmware/vendor/gcc/gcc/samr34j17b_sram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/gcc/gcc/samr34j17b_sram.ld -------------------------------------------------------------------------------- /firmware/vendor/gcc/gcc/samr34j18b_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/gcc/gcc/samr34j18b_flash.ld -------------------------------------------------------------------------------- /firmware/vendor/gcc/gcc/samr34j18b_sram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/gcc/gcc/samr34j18b_sram.ld -------------------------------------------------------------------------------- /firmware/vendor/gcc/gcc/startup_samr34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/gcc/gcc/startup_samr34.c -------------------------------------------------------------------------------- /firmware/vendor/gcc/system_samr34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/gcc/system_samr34.c -------------------------------------------------------------------------------- /firmware/vendor/include/component-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component-version.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/ac.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/adc.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/aes.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/ccl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/ccl.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/dac.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/dmac.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/dsu.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/eic.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/evsys.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/gclk.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/mclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/mclk.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/mtb.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/nvmctrl.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/osc32kctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/osc32kctrl.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/oscctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/oscctrl.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/pac.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/pm.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/port.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/rstc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/rstc.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/rtc.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/sercom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/sercom.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/supc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/supc.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/tc.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/tcc.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/trng.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/usb.h -------------------------------------------------------------------------------- /firmware/vendor/include/component/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/component/wdt.h -------------------------------------------------------------------------------- /firmware/vendor/include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/core_cm0plus.h -------------------------------------------------------------------------------- /firmware/vendor/include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/core_cmFunc.h -------------------------------------------------------------------------------- /firmware/vendor/include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/core_cmInstr.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/ac.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/adc.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/aes.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/ccl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/ccl.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/dac.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/dmac.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/dsu.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/eic.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/evsys.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/gclk.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/mclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/mclk.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/mtb.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/nvmctrl.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/osc32kctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/osc32kctrl.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/oscctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/oscctrl.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/pac.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/pm.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/port.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/ptc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/ptc.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/rstc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/rstc.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/rtc.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/sercom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/sercom0.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/sercom1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/sercom1.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/sercom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/sercom2.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/sercom3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/sercom3.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/sercom4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/sercom4.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/sercom5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/sercom5.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/supc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/supc.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/tc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/tc0.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/tc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/tc1.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/tc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/tc2.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/tc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/tc3.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/tc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/tc4.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/tcc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/tcc0.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/tcc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/tcc1.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/tcc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/tcc2.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/trng.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/usb.h -------------------------------------------------------------------------------- /firmware/vendor/include/instance/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/instance/wdt.h -------------------------------------------------------------------------------- /firmware/vendor/include/pio/samr34j16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/pio/samr34j16b.h -------------------------------------------------------------------------------- /firmware/vendor/include/pio/samr34j17b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/pio/samr34j17b.h -------------------------------------------------------------------------------- /firmware/vendor/include/pio/samr34j18b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/pio/samr34j18b.h -------------------------------------------------------------------------------- /firmware/vendor/include/sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/sam.h -------------------------------------------------------------------------------- /firmware/vendor/include/samr34.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/samr34.h -------------------------------------------------------------------------------- /firmware/vendor/include/samr34j16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/samr34j16b.h -------------------------------------------------------------------------------- /firmware/vendor/include/samr34j17b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/samr34j17b.h -------------------------------------------------------------------------------- /firmware/vendor/include/samr34j18b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/samr34j18b.h -------------------------------------------------------------------------------- /firmware/vendor/include/system_samr34.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/firmware/vendor/include/system_samr34.h -------------------------------------------------------------------------------- /hardware/gps-v0.1a/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/gps-v0.1a/fp-lib-table -------------------------------------------------------------------------------- /hardware/gps-v0.1a/gpsDaughterBoard-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/gps-v0.1a/gpsDaughterBoard-cache.lib -------------------------------------------------------------------------------- /hardware/gps-v0.1a/gpsDaughterBoard.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/gps-v0.1a/gpsDaughterBoard.kicad_pcb -------------------------------------------------------------------------------- /hardware/gps-v0.1a/gpsDaughterBoard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/gps-v0.1a/gpsDaughterBoard.pro -------------------------------------------------------------------------------- /hardware/gps-v0.1a/gpsDaughterBoard.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/gps-v0.1a/gpsDaughterBoard.sch -------------------------------------------------------------------------------- /hardware/gps-v0.1a/ref/outline.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/gps-v0.1a/ref/outline.dxf -------------------------------------------------------------------------------- /hardware/gps-v0.1a/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/gps-v0.1a/sym-lib-table -------------------------------------------------------------------------------- /hardware/panel_v0.1a/gpsLoggerLoRa_w_gps_panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/panel_v0.1a/gpsLoggerLoRa_w_gps_panel.kicad_pcb -------------------------------------------------------------------------------- /hardware/panel_v0.1a/gpsLoggerLoRa_w_gps_panel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/panel_v0.1a/gpsLoggerLoRa_w_gps_panel.pro -------------------------------------------------------------------------------- /hardware/v0.1a/SAMR34.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/SAMR34.sch -------------------------------------------------------------------------------- /hardware/v0.1a/USB.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/USB.sch -------------------------------------------------------------------------------- /hardware/v0.1a/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/fp-lib-table -------------------------------------------------------------------------------- /hardware/v0.1a/gpsLoggerLoRa-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/gpsLoggerLoRa-cache.lib -------------------------------------------------------------------------------- /hardware/v0.1a/gpsLoggerLoRa.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/gpsLoggerLoRa.kicad_pcb -------------------------------------------------------------------------------- /hardware/v0.1a/gpsLoggerLoRa.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/gpsLoggerLoRa.pro -------------------------------------------------------------------------------- /hardware/v0.1a/gpsLoggerLoRa.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/gpsLoggerLoRa.sch -------------------------------------------------------------------------------- /hardware/v0.1a/memio.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/memio.sch -------------------------------------------------------------------------------- /hardware/v0.1a/ref/gpsLoggerLora_logo.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/ref/gpsLoggerLora_logo.kicad_mod -------------------------------------------------------------------------------- /hardware/v0.1a/ref/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/ref/logo.png -------------------------------------------------------------------------------- /hardware/v0.1a/ref/outline.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/ref/outline.dxf -------------------------------------------------------------------------------- /hardware/v0.1a/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1a/sym-lib-table -------------------------------------------------------------------------------- /hardware/v0.1b/SAMR34.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/SAMR34.sch -------------------------------------------------------------------------------- /hardware/v0.1b/USB.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/USB.sch -------------------------------------------------------------------------------- /hardware/v0.1b/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/fp-lib-table -------------------------------------------------------------------------------- /hardware/v0.1b/gpsLoggerLoRa-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/gpsLoggerLoRa-cache.lib -------------------------------------------------------------------------------- /hardware/v0.1b/gpsLoggerLoRa.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/gpsLoggerLoRa.kicad_pcb -------------------------------------------------------------------------------- /hardware/v0.1b/gpsLoggerLoRa.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/gpsLoggerLoRa.pro -------------------------------------------------------------------------------- /hardware/v0.1b/gpsLoggerLoRa.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/gpsLoggerLoRa.sch -------------------------------------------------------------------------------- /hardware/v0.1b/memio.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/memio.sch -------------------------------------------------------------------------------- /hardware/v0.1b/ref/gpsLoggerLora_logo.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/ref/gpsLoggerLora_logo.kicad_mod -------------------------------------------------------------------------------- /hardware/v0.1b/ref/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/ref/logo.png -------------------------------------------------------------------------------- /hardware/v0.1b/ref/outline.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/ref/outline.dxf -------------------------------------------------------------------------------- /hardware/v0.1b/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/hardware/v0.1b/sym-lib-table -------------------------------------------------------------------------------- /img/gpsLoggerLora_v0.1a_proto_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/img/gpsLoggerLora_v0.1a_proto_001.jpg -------------------------------------------------------------------------------- /img/gpsLoggerLora_v0.1a_proto_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/img/gpsLoggerLora_v0.1a_proto_002.jpg -------------------------------------------------------------------------------- /img/gpsloggerlora_v0.1a_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/img/gpsloggerlora_v0.1a_front.jpg -------------------------------------------------------------------------------- /img/gpsloggerlora_v0.1a_pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/img/gpsloggerlora_v0.1a_pcb.jpg -------------------------------------------------------------------------------- /img/gpsloggerlora_v0.1a_side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/gpsLoggerLora/HEAD/img/gpsloggerlora_v0.1a_side.jpg --------------------------------------------------------------------------------