├── .gitignore ├── Readme.md ├── ble_cus.c ├── ble_cus.h ├── images ├── advertisement_packet.png ├── advertising_device.png ├── enable_notif.png ├── memory_settings.JPG ├── memory_settings_SDK_v14.JPG ├── memory_settings_SDK_v14_SES.JPG ├── memory_settings_SDK_v15_Keil.JPG ├── memory_settings_SDK_v15_SES.JPG ├── memory_settings_SDK_v15_gcc.JPG ├── service.png ├── service_and_char.png ├── service_char_desc.png ├── write_to_char_1.png └── write_to_char_2.png ├── main.c └── pca10040 └── s132 ├── arm5_no_packs ├── ble_app_template_pca10040_s132.uvoptx └── ble_app_template_pca10040_s132.uvprojx ├── armgcc ├── Makefile └── ble_app_template_gcc_nrf52.ld ├── config └── sdk_config.h └── ses ├── ble_app_template_pca10040_s132.emProject ├── ble_app_template_pca10040_s132.emSession └── flash_placement.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/Readme.md -------------------------------------------------------------------------------- /ble_cus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/ble_cus.c -------------------------------------------------------------------------------- /ble_cus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/ble_cus.h -------------------------------------------------------------------------------- /images/advertisement_packet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/advertisement_packet.png -------------------------------------------------------------------------------- /images/advertising_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/advertising_device.png -------------------------------------------------------------------------------- /images/enable_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/enable_notif.png -------------------------------------------------------------------------------- /images/memory_settings.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/memory_settings.JPG -------------------------------------------------------------------------------- /images/memory_settings_SDK_v14.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/memory_settings_SDK_v14.JPG -------------------------------------------------------------------------------- /images/memory_settings_SDK_v14_SES.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/memory_settings_SDK_v14_SES.JPG -------------------------------------------------------------------------------- /images/memory_settings_SDK_v15_Keil.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/memory_settings_SDK_v15_Keil.JPG -------------------------------------------------------------------------------- /images/memory_settings_SDK_v15_SES.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/memory_settings_SDK_v15_SES.JPG -------------------------------------------------------------------------------- /images/memory_settings_SDK_v15_gcc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/memory_settings_SDK_v15_gcc.JPG -------------------------------------------------------------------------------- /images/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/service.png -------------------------------------------------------------------------------- /images/service_and_char.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/service_and_char.png -------------------------------------------------------------------------------- /images/service_char_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/service_char_desc.png -------------------------------------------------------------------------------- /images/write_to_char_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/write_to_char_1.png -------------------------------------------------------------------------------- /images/write_to_char_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/images/write_to_char_2.png -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/main.c -------------------------------------------------------------------------------- /pca10040/s132/arm5_no_packs/ble_app_template_pca10040_s132.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/pca10040/s132/arm5_no_packs/ble_app_template_pca10040_s132.uvoptx -------------------------------------------------------------------------------- /pca10040/s132/arm5_no_packs/ble_app_template_pca10040_s132.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/pca10040/s132/arm5_no_packs/ble_app_template_pca10040_s132.uvprojx -------------------------------------------------------------------------------- /pca10040/s132/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/pca10040/s132/armgcc/Makefile -------------------------------------------------------------------------------- /pca10040/s132/armgcc/ble_app_template_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/pca10040/s132/armgcc/ble_app_template_gcc_nrf52.ld -------------------------------------------------------------------------------- /pca10040/s132/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/pca10040/s132/config/sdk_config.h -------------------------------------------------------------------------------- /pca10040/s132/ses/ble_app_template_pca10040_s132.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/pca10040/s132/ses/ble_app_template_pca10040_s132.emProject -------------------------------------------------------------------------------- /pca10040/s132/ses/ble_app_template_pca10040_s132.emSession: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/pca10040/s132/ses/ble_app_template_pca10040_s132.emSession -------------------------------------------------------------------------------- /pca10040/s132/ses/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjornspockeli/custom_ble_service_example/HEAD/pca10040/s132/ses/flash_placement.xml --------------------------------------------------------------------------------