Re: Question about BLE GATT Services

2017-05-11 Thread Pritish Gandhi
Hi Chris, Sorry I previous e-mail was a bit premature. The proposed solution is not complete since once GATT services and characteristic attributes have been registered with ble_att_scr_register() there is no way to unregister them. I eventually get ENOMEM errors when I do the ble_gatts_start()

Re: Question about BLE GATT Services

2017-05-10 Thread Pritish Gandhi
Hey Chris, On Wed, May 3, 2017 at 12:16 PM, Christopher Collins wrote: > On Wed, May 03, 2017 at 12:10:28PM -0700, Christopher Collins wrote: > > On Wed, May 03, 2017 at 10:59:59AM -0700, Pritish Gandhi wrote: > > > Hi All, > > > Just wanted to give an update to the

Re: Question about BLE GATT Services

2017-05-03 Thread Christopher Collins
On Wed, May 03, 2017 at 12:10:28PM -0700, Christopher Collins wrote: > On Wed, May 03, 2017 at 10:59:59AM -0700, Pritish Gandhi wrote: > > Hi All, > > Just wanted to give an update to the community on the status of trying to > > start the GATT server after the OS is initialized. > > > > to

Re: Question about BLE GATT Services

2017-05-03 Thread Christopher Collins
On Wed, May 03, 2017 at 10:59:59AM -0700, Pritish Gandhi wrote: > Hi All, > Just wanted to give an update to the community on the status of trying to > start the GATT server after the OS is initialized. > > to ble_hs.c > @@ -606,5 +603,7 @@ ble_hs_init(void) > /* Configure the HCI transport

Re: Question about BLE GATT Services

2017-05-03 Thread Pritish Gandhi
Hi All, Just wanted to give an update to the community on the status of trying to start the GATT server after the OS is initialized. to ble_hs.c @@ -606,5 +603,7 @@ ble_hs_init(void) /* Configure the HCI transport to communicate with a host. */ ble_hci_trans_cfg_hs(ble_hs_hci_rx_evt,

Re: Question about BLE GATT Services

2017-05-02 Thread Wayne Keenan
Apologies, I missed this (email and generally in the 1.0 dev) but please do support this, as it's pretty much a mandatory requirement for being able to create GATT services (and set-up advertising data) after the OS started, using an embedded scripting language. Thanks, Wayne On 28 April 2017

Re: Question about BLE GATT Services

2017-04-27 Thread Pritish Gandhi
Hey Chris, On Thu, Apr 27, 2017 at 4:05 PM, Christopher Collins wrote: > Hi Pritish, > > On Thu, Apr 27, 2017 at 03:49:34PM -0700, Pritish Gandhi wrote: > > Hi All, > > I have a generic question about the nimBLE capabilities. I'm trying to > > build a BLE GATT server which