├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── common ├── ci │ └── ci-install-sdk.sh └── gcc │ └── Makefile └── examples ├── comp ├── README.md ├── arm │ └── comp.uvprojx ├── armgcc │ └── Makefile └── main.c ├── gpio_input ├── README.md ├── armgcc │ └── Makefile └── main.c ├── gpio_toggle ├── README.md ├── arm │ └── gpio.uvprojx ├── armgcc │ └── Makefile └── main.c ├── i2c_master ├── README.md ├── arm │ └── i2s_master.uvprojx ├── armgcc │ └── Makefile └── main.c ├── i2s_master ├── README.md ├── arm │ └── i2c_master.uvprojx ├── armgcc │ └── Makefile └── main.c ├── lpcomp ├── README.md ├── arm │ └── lpcomp.uvprojx ├── armgcc │ └── Makefile └── main.c ├── nvmc ├── README.md ├── arm │ └── nvmc.uvprojx ├── armgcc │ └── Makefile └── main.c ├── ppi ├── README.md ├── arm │ └── ppi.uvprojx ├── armgcc │ └── Makefile └── main.c ├── pwm ├── README.md ├── arm │ └── pwm.uvprojx ├── armgcc │ └── Makefile └── main.c ├── radio_rx ├── README.md ├── arm │ └── radio_rx.uvprojx ├── armgcc │ └── Makefile └── main.c ├── radio_tx ├── README.md ├── arm │ └── radio_tx.uvprojx ├── armgcc │ └── Makefile └── main.c ├── rng ├── README.md ├── arm │ └── rng.uvprojx ├── armgcc │ └── Makefile └── main.c ├── rtc ├── README.md ├── arm │ └── rtc.uvprojx ├── armgcc │ └── Makefile └── main.c ├── saadc ├── README.md ├── arm │ └── saadc.uvprojx ├── armgcc │ └── Makefile └── main.c ├── temp ├── README.md ├── arm │ └── temp.uvprojx ├── armgcc │ └── Makefile └── main.c ├── timer ├── README.md ├── arm │ └── timer.uvprojx ├── armgcc │ └── Makefile └── main.c └── uart ├── README.md ├── arm └── uart.uvprojx ├── armgcc └── Makefile └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/README.md -------------------------------------------------------------------------------- /common/ci/ci-install-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/common/ci/ci-install-sdk.sh -------------------------------------------------------------------------------- /common/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/common/gcc/Makefile -------------------------------------------------------------------------------- /examples/comp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/comp/README.md -------------------------------------------------------------------------------- /examples/comp/arm/comp.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/comp/arm/comp.uvprojx -------------------------------------------------------------------------------- /examples/comp/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/comp/armgcc/Makefile -------------------------------------------------------------------------------- /examples/comp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/comp/main.c -------------------------------------------------------------------------------- /examples/gpio_input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/gpio_input/README.md -------------------------------------------------------------------------------- /examples/gpio_input/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/gpio_input/armgcc/Makefile -------------------------------------------------------------------------------- /examples/gpio_input/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/gpio_input/main.c -------------------------------------------------------------------------------- /examples/gpio_toggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/gpio_toggle/README.md -------------------------------------------------------------------------------- /examples/gpio_toggle/arm/gpio.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/gpio_toggle/arm/gpio.uvprojx -------------------------------------------------------------------------------- /examples/gpio_toggle/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/gpio_toggle/armgcc/Makefile -------------------------------------------------------------------------------- /examples/gpio_toggle/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/gpio_toggle/main.c -------------------------------------------------------------------------------- /examples/i2c_master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/i2c_master/README.md -------------------------------------------------------------------------------- /examples/i2c_master/arm/i2s_master.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/i2c_master/arm/i2s_master.uvprojx -------------------------------------------------------------------------------- /examples/i2c_master/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/i2c_master/armgcc/Makefile -------------------------------------------------------------------------------- /examples/i2c_master/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/i2c_master/main.c -------------------------------------------------------------------------------- /examples/i2s_master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/i2s_master/README.md -------------------------------------------------------------------------------- /examples/i2s_master/arm/i2c_master.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/i2s_master/arm/i2c_master.uvprojx -------------------------------------------------------------------------------- /examples/i2s_master/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/i2s_master/armgcc/Makefile -------------------------------------------------------------------------------- /examples/i2s_master/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/i2s_master/main.c -------------------------------------------------------------------------------- /examples/lpcomp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/lpcomp/README.md -------------------------------------------------------------------------------- /examples/lpcomp/arm/lpcomp.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/lpcomp/arm/lpcomp.uvprojx -------------------------------------------------------------------------------- /examples/lpcomp/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/lpcomp/armgcc/Makefile -------------------------------------------------------------------------------- /examples/lpcomp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/lpcomp/main.c -------------------------------------------------------------------------------- /examples/nvmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/nvmc/README.md -------------------------------------------------------------------------------- /examples/nvmc/arm/nvmc.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/nvmc/arm/nvmc.uvprojx -------------------------------------------------------------------------------- /examples/nvmc/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/nvmc/armgcc/Makefile -------------------------------------------------------------------------------- /examples/nvmc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/nvmc/main.c -------------------------------------------------------------------------------- /examples/ppi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/ppi/README.md -------------------------------------------------------------------------------- /examples/ppi/arm/ppi.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/ppi/arm/ppi.uvprojx -------------------------------------------------------------------------------- /examples/ppi/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/ppi/armgcc/Makefile -------------------------------------------------------------------------------- /examples/ppi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/ppi/main.c -------------------------------------------------------------------------------- /examples/pwm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/pwm/README.md -------------------------------------------------------------------------------- /examples/pwm/arm/pwm.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/pwm/arm/pwm.uvprojx -------------------------------------------------------------------------------- /examples/pwm/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/pwm/armgcc/Makefile -------------------------------------------------------------------------------- /examples/pwm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/pwm/main.c -------------------------------------------------------------------------------- /examples/radio_rx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/radio_rx/README.md -------------------------------------------------------------------------------- /examples/radio_rx/arm/radio_rx.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/radio_rx/arm/radio_rx.uvprojx -------------------------------------------------------------------------------- /examples/radio_rx/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/radio_rx/armgcc/Makefile -------------------------------------------------------------------------------- /examples/radio_rx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/radio_rx/main.c -------------------------------------------------------------------------------- /examples/radio_tx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/radio_tx/README.md -------------------------------------------------------------------------------- /examples/radio_tx/arm/radio_tx.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/radio_tx/arm/radio_tx.uvprojx -------------------------------------------------------------------------------- /examples/radio_tx/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/radio_tx/armgcc/Makefile -------------------------------------------------------------------------------- /examples/radio_tx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/radio_tx/main.c -------------------------------------------------------------------------------- /examples/rng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/rng/README.md -------------------------------------------------------------------------------- /examples/rng/arm/rng.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/rng/arm/rng.uvprojx -------------------------------------------------------------------------------- /examples/rng/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/rng/armgcc/Makefile -------------------------------------------------------------------------------- /examples/rng/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/rng/main.c -------------------------------------------------------------------------------- /examples/rtc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/rtc/README.md -------------------------------------------------------------------------------- /examples/rtc/arm/rtc.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/rtc/arm/rtc.uvprojx -------------------------------------------------------------------------------- /examples/rtc/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/rtc/armgcc/Makefile -------------------------------------------------------------------------------- /examples/rtc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/rtc/main.c -------------------------------------------------------------------------------- /examples/saadc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/saadc/README.md -------------------------------------------------------------------------------- /examples/saadc/arm/saadc.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/saadc/arm/saadc.uvprojx -------------------------------------------------------------------------------- /examples/saadc/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/saadc/armgcc/Makefile -------------------------------------------------------------------------------- /examples/saadc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/saadc/main.c -------------------------------------------------------------------------------- /examples/temp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/temp/README.md -------------------------------------------------------------------------------- /examples/temp/arm/temp.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/temp/arm/temp.uvprojx -------------------------------------------------------------------------------- /examples/temp/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/temp/armgcc/Makefile -------------------------------------------------------------------------------- /examples/temp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/temp/main.c -------------------------------------------------------------------------------- /examples/timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/timer/README.md -------------------------------------------------------------------------------- /examples/timer/arm/timer.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/timer/arm/timer.uvprojx -------------------------------------------------------------------------------- /examples/timer/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/timer/armgcc/Makefile -------------------------------------------------------------------------------- /examples/timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/timer/main.c -------------------------------------------------------------------------------- /examples/uart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/uart/README.md -------------------------------------------------------------------------------- /examples/uart/arm/uart.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/uart/arm/uart.uvprojx -------------------------------------------------------------------------------- /examples/uart/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/uart/armgcc/Makefile -------------------------------------------------------------------------------- /examples/uart/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andenore/NordicSnippets/HEAD/examples/uart/main.c --------------------------------------------------------------------------------