|
[Bluetooth mesh]CONFIG_BT_PERIPHERAL, what does it mean?
Hi, I am running into the same problem (ISR / Spinning error when trying to run the bluetooth mesh example with gatt enabled on micro bit) but unfortunately do not know how to delete Generic Level ser
Hi, I am running into the same problem (ISR / Spinning error when trying to run the bluetooth mesh example with gatt enabled on micro bit) but unfortunately do not know how to delete Generic Level ser
|
By
...
· #5064
·
|
|
bt_le_scan of node in Mesh network
Hi, I am wondering if (and how) it is possible to fire off a bt_le_scan (scan for nearby devices) from a Zephyr OS device which is a node in a BLE mesh network at the same time. From my current resear
Hi, I am wondering if (and how) it is possible to fire off a bt_le_scan (scan for nearby devices) from a Zephyr OS device which is a node in a BLE mesh network at the same time. From my current resear
|
By
...
· #5245
·
|
|
bt_le_scan of node in Mesh network
Hi! Thanks, this looks exactly like what I was looking for. Even seems to be easier than the NRF52 SDK-approach with the timing API. Best Regards, Martin Am Mo., 15. Okt. 2018 um 08:25 Uhr schrieb <ju
Hi! Thanks, this looks exactly like what I was looking for. Even seems to be easier than the NRF52 SDK-approach with the timing API. Best Regards, Martin Am Mo., 15. Okt. 2018 um 08:25 Uhr schrieb <ju
|
By
...
· #5269
·
|
|
Communication between onoff-app Zephyr sample and light switch example of NRF52 Mesh SDK
Hi, While doing experiments with the OnOff samples provided, I stumbled across a strange phenomenon: There are two ways used to send STATUS messages in samples\boards rf52\mesh\onoff-app: One is by us
Hi, While doing experiments with the OnOff samples provided, I stumbled across a strange phenomenon: There are two ways used to send STATUS messages in samples\boards rf52\mesh\onoff-app: One is by us
|
By
...
· #5326
·
|
|
Communication between onoff-app Zephyr sample and light switch example of NRF52 Mesh SDK
Hi! Thanks guys, Virkrant pointed me into the right direction. It seems as if for the NRF52 Mesh SDK to process STATUS messages sent from bt_mesh_model_publish(), it has to explicitly subscribe to a g
Hi! Thanks guys, Virkrant pointed me into the right direction. It seems as if for the NRF52 Mesh SDK to process STATUS messages sent from bt_mesh_model_publish(), it has to explicitly subscribe to a g
|
By
...
· #5330
·
|
|
Extracting iBeacon Advertisement Packets
Hi, I am quite new to Zephyr and want to extract iBeacon Advertisement Packets. I already have access to them as a net_buf_simple structure, but I want to read the major and minor for example. I reali
Hi, I am quite new to Zephyr and want to extract iBeacon Advertisement Packets. I already have access to them as a net_buf_simple structure, but I want to read the major and minor for example. I reali
|
By
...
· #5444
·
|
|
Extracting iBeacon Advertisement Packets
Well, simple enough. int i; for(i=0; i<5; i++) { printf("i%d ", i+1); } prints the advertisement packet's bytes in decimals and includes the UUID acc. to the kontakt.io article. Hope this helps anyone
Well, simple enough. int i; for(i=0; i<5; i++) { printf("i%d ", i+1); } prints the advertisement packet's bytes in decimals and includes the UUID acc. to the kontakt.io article. Hope this helps anyone
|
By
...
· #5445
·
|
|
Extracting iBeacon Advertisement Packets
Sorry, I was copying the wrong code.. int i; //print adv. packet for(i=0;i<buf->len;i++) { printk("%d %02X ",i, buf->data[i]); } //print major printk("maj: %d ",((buf->data[25] & 0xff) * 0x100 + (buf-
Sorry, I was copying the wrong code.. int i; //print adv. packet for(i=0;i<buf->len;i++) { printk("%d %02X ",i, buf->data[i]); } //print major printk("maj: %d ",((buf->data[25] & 0xff) * 0x100 + (buf-
|
By
...
· #5446
·
|
|
Duplicate messages when using bt_mesh_model_publish() and groups
Hi, I am running samples\boards rf52\mesh\onoff-app on two NRF52 DKs. What I notice is that mesh messages are duplicated, i.e. when pressing a button on the server node (that is publishing to group 0x
Hi, I am running samples\boards rf52\mesh\onoff-app on two NRF52 DKs. What I notice is that mesh messages are duplicated, i.e. when pressing a button on the server node (that is publishing to group 0x
|
By
...
· #5503
·
|
|
Duplicate messages when using bt_mesh_model_publish() and groups
Hi, thanks guys for your help. I have been using the nRF Mesh app for provisioning. Setting Interval Steps = 0 indeed solves the issue. As I do not need message transmissions, this solution is perfect
Hi, thanks guys for your help. I have been using the nRF Mesh app for provisioning. Setting Interval Steps = 0 indeed solves the issue. As I do not need message transmissions, this solution is perfect
|
By
...
· #5511
·
|
|
Mesh: Limit of PDUs sent within a moving 10-second window
Hi, the Bluetooth Mesh Profile specification says that "A node should originate less than 100 Lower Transport PDUs in a moving 10-second window." on p. 94. Can anyone tell me if Zephyr OS is observing
Hi, the Bluetooth Mesh Profile specification says that "A node should originate less than 100 Lower Transport PDUs in a moving 10-second window." on p. 94. Can anyone tell me if Zephyr OS is observing
|
By
...
· #5535
·
|
|
PCA10059 without additional debugger - non-volatile storage of settings
Hi, I know it is a quite specific question, but I thought that maybe someone has an idea into which direction to go.. I have some PCA10059 (nRF52-Dongles) lying around and would like to make experimen
Hi, I know it is a quite specific question, but I thought that maybe someone has an idea into which direction to go.. I have some PCA10059 (nRF52-Dongles) lying around and would like to make experimen
|
By
...
· #5552
·
|
|
PCA10059 without additional debugger - non-volatile storage of settings
Hi Jamie, thanks! I was already trying different values, such as storage_partition: partition@b0000 { label = "storage"; reg = < 0xb0000 0x4000 >; }; unfortunately without success.. The display of nRF
Hi Jamie, thanks! I was already trying different values, such as storage_partition: partition@b0000 { label = "storage"; reg = < 0xb0000 0x4000 >; }; unfortunately without success.. The display of nRF
|
By
...
· #5554
·
|
|
PCA10059 without additional debugger - non-volatile storage of settings
Hi, in case anyone else is interested: lemrey has reworked the patch at https://github.com/zephyrproject-rtos/zephyr/pull/11210 today to address some comments. With the update, non-volatile storage of
Hi, in case anyone else is interested: lemrey has reworked the patch at https://github.com/zephyrproject-rtos/zephyr/pull/11210 today to address some comments. With the update, non-volatile storage of
|
By
...
· #5572
·
|
|
Long-Term Bluetooth Mesh Reliability
Hi, I am wondering if someone has already made experiments regarding the long-term reliability of Bluetooth Mesh in Zephyr OS? The reason why I am asking is this: I am on the latest master and I use a
Hi, I am wondering if someone has already made experiments regarding the long-term reliability of Bluetooth Mesh in Zephyr OS? The reason why I am asking is this: I am on the latest master and I use a
|
By
...
· #5705
·
|
|
Long-Term Bluetooth Mesh Reliability
Hi Johan, thanks - that's good to know for sure. No luck unfortunately, my device is still not responding after some time. I have set CONFIG_DEBUG=y and from my understanding the application seems to
Hi Johan, thanks - that's good to know for sure. No luck unfortunately, my device is still not responding after some time. I have set CONFIG_DEBUG=y and from my understanding the application seems to
|
By
...
· #5719
·
|