├── .gitignore ├── Abstract.txt ├── README.md ├── ble_lbs.c ├── ble_lbs.h ├── config ├── nrf_drv_config.h └── pstorage_platform.h ├── license.txt ├── main.c └── pca10040 └── s132 ├── arm5_no_packs ├── RTE │ ├── Device │ │ └── nRF52832_xxAA │ │ │ ├── arm_startup_nrf52.s │ │ │ └── system_nrf52.c │ └── RTE_Components.h └── ble_app_lbs_s132_pca10040.uvprojx └── armgcc ├── Makefile └── ble_app_template_gcc_nrf52.ld /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/.gitignore -------------------------------------------------------------------------------- /Abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/Abstract.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/README.md -------------------------------------------------------------------------------- /ble_lbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/ble_lbs.c -------------------------------------------------------------------------------- /ble_lbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/ble_lbs.h -------------------------------------------------------------------------------- /config/nrf_drv_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/config/nrf_drv_config.h -------------------------------------------------------------------------------- /config/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/config/pstorage_platform.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/license.txt -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/main.c -------------------------------------------------------------------------------- /pca10040/s132/arm5_no_packs/RTE/Device/nRF52832_xxAA/arm_startup_nrf52.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/pca10040/s132/arm5_no_packs/RTE/Device/nRF52832_xxAA/arm_startup_nrf52.s -------------------------------------------------------------------------------- /pca10040/s132/arm5_no_packs/RTE/Device/nRF52832_xxAA/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/pca10040/s132/arm5_no_packs/RTE/Device/nRF52832_xxAA/system_nrf52.c -------------------------------------------------------------------------------- /pca10040/s132/arm5_no_packs/RTE/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/pca10040/s132/arm5_no_packs/RTE/RTE_Components.h -------------------------------------------------------------------------------- /pca10040/s132/arm5_no_packs/ble_app_lbs_s132_pca10040.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/pca10040/s132/arm5_no_packs/ble_app_lbs_s132_pca10040.uvprojx -------------------------------------------------------------------------------- /pca10040/s132/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/pca10040/s132/armgcc/Makefile -------------------------------------------------------------------------------- /pca10040/s132/armgcc/ble_app_template_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-ble-app-lbs/HEAD/pca10040/s132/armgcc/ble_app_template_gcc_nrf52.ld --------------------------------------------------------------------------------