├── .gitignore ├── LICENSE ├── README.md ├── examples └── pca10001 │ ├── blinky_example │ └── pure-gcc │ │ └── Makefile │ └── s110 │ ├── ble_app_hrs │ └── pure-gcc │ │ └── Makefile │ └── ble_app_proximity │ └── pure-gcc │ └── Makefile └── template ├── Makefile ├── Makefile.posix ├── Makefile.windows ├── gcc_nrf51_blank.ld ├── gcc_nrf51_common.ld ├── gcc_nrf51_s110.ld ├── gcc_nrf51_s120.ld ├── gcc_nrf51_s210.ld ├── gcc_nrf51_s310.ld └── startup_nrf51.s /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/README.md -------------------------------------------------------------------------------- /examples/pca10001/blinky_example/pure-gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/examples/pca10001/blinky_example/pure-gcc/Makefile -------------------------------------------------------------------------------- /examples/pca10001/s110/ble_app_hrs/pure-gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/examples/pca10001/s110/ble_app_hrs/pure-gcc/Makefile -------------------------------------------------------------------------------- /examples/pca10001/s110/ble_app_proximity/pure-gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/examples/pca10001/s110/ble_app_proximity/pure-gcc/Makefile -------------------------------------------------------------------------------- /template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/Makefile -------------------------------------------------------------------------------- /template/Makefile.posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/Makefile.posix -------------------------------------------------------------------------------- /template/Makefile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/Makefile.windows -------------------------------------------------------------------------------- /template/gcc_nrf51_blank.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/gcc_nrf51_blank.ld -------------------------------------------------------------------------------- /template/gcc_nrf51_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/gcc_nrf51_common.ld -------------------------------------------------------------------------------- /template/gcc_nrf51_s110.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/gcc_nrf51_s110.ld -------------------------------------------------------------------------------- /template/gcc_nrf51_s120.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/gcc_nrf51_s120.ld -------------------------------------------------------------------------------- /template/gcc_nrf51_s210.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/gcc_nrf51_s210.ld -------------------------------------------------------------------------------- /template/gcc_nrf51_s310.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/gcc_nrf51_s310.ld -------------------------------------------------------------------------------- /template/startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlnd/nrf51-pure-gcc-setup/HEAD/template/startup_nrf51.s --------------------------------------------------------------------------------