<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/80063/bluetooth-mesh-configuration-failure</link><description>board: nrf52832 
 nRF5 SDK version: v17.0.0 
 nRF5 SDK for Mesh version : v5.0.0 
 softdevice: S332 
 application: light switch client + light switch server + provisioner + ble_ant_app_hrm + ble_app_uart_coexist 
 
 My application have two characters</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 23 Nov 2021 02:27:51 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/80063/bluetooth-mesh-configuration-failure" /><item><title>RE: Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/thread/340218?ContentTypeID=1</link><pubDate>Tue, 23 Nov 2021 02:27:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:137ec7e3-11ec-4244-bb97-6a4d21c99b79</guid><dc:creator>erin_hong</dc:creator><description>&lt;p&gt;&lt;span&gt;Hi Elfving,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thank you for the information! I&amp;nbsp;will consider it.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Erin&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/thread/339169?ContentTypeID=1</link><pubDate>Tue, 16 Nov 2021 09:32:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:85e8672b-673e-4cf6-98e0-7003555974ef</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Hey Erin!&lt;/p&gt;
[quote user="erin_hong"]&lt;p&gt;also,&lt;strong&gt;&lt;/strong&gt;&lt;em&gt;&lt;strong&gt;&amp;quot;your provisioner is incrementing the address with 1&amp;quot;&lt;/strong&gt;&lt;/em&gt;, what address do you mean? and why the second element of the first server &lt;span&gt;gets the next address but it didn&amp;#39;t show any log?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;[/quote]
&lt;p&gt;The unicast address. The address to to a node is for instance 0x003, which is also the address to its first element. If the node had 3 elements their address would automatically be 0x003,0x004, 0x005. If the provisioner has already given 0x004 to another node then we will have overlap and address collisions and generally undefined behavior.&lt;/p&gt;
&lt;p&gt;That is why it works if you start provisioning the server with 1 element first: the first server will eg. get address 0x003 (along with element 1), and the second server gets address 0x004(along with its first element, and the second element gets address 0x005). If you start with the server with two elements then you get addresses 0x003 and 0x004 on the first server and 0x004 on the second server. Which leads to address collisions.&lt;/p&gt;
[quote user="erin_hong"]&lt;p&gt;it&amp;nbsp;solved this provision issue, but is this&amp;nbsp;modification ok? &lt;span&gt;or do you have any suggestions for me to try?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;[/quote]
&lt;p&gt;Yeah that sounds like something that could work. Though this isn&amp;#39;t a very scalable solution as you&amp;nbsp;can see. This example uses a static provisioner, which isn&amp;#39;t meant to be used as an embedded provisioner or something in for instance a production context.&lt;/p&gt;
&lt;p&gt;As the documentation says: &amp;quot;&lt;span&gt;It works in a fixed, predefined way and can be used as the static provisioner with the following examples(...)&amp;quot;&lt;/span&gt;. And &amp;quot;The static provisioner has its own limitations and is provided as a tool to evaluate SDK examples without the need to use a mobile application provisioner.&amp;quot;&lt;/p&gt;
&lt;p&gt;If you&amp;#39;d want an embedded provisioner I would advice you to make your own and not base it completely on the provisioner example, but I would rather recommend that you didn&amp;#39;t use an embedded device as a provisioner at all. It is such a powerful device that something like a cellphone or host app would be better. An exception would be if you had some sort of gateway unit as an interface between an IP-network and a mesh network.&lt;/p&gt;
&lt;p&gt;For a proof of concept, the nRF Mesh app can also be a great asset. The provisioner example is great if you don&amp;#39;t change any of its assumptions, this was done here though.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/thread/338675?ContentTypeID=1</link><pubDate>Fri, 12 Nov 2021 03:30:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d8c0ad97-638e-4bc9-afa5-0b4a8960dc8b</guid><dc:creator>erin_hong</dc:creator><description>&lt;p&gt;Hi Elfving,&lt;/p&gt;
&lt;p&gt;Thanks you for your reply!&lt;/p&gt;
&lt;p&gt;I modify&amp;nbsp;#define ACCESS_ELEMENT_COUNT from 2&lt;span&gt;&amp;nbsp;to 1&amp;nbsp;&lt;/span&gt;(nrf_mesh_config_app.h) on server (migration ver), and it works!&lt;/p&gt;
&lt;p&gt;but in my project&amp;nbsp;&amp;nbsp;&lt;strong&gt;ble_ant_app_hrm + sdk_coexist(light switch client) + provisioner(light switch client self provision)&lt;/strong&gt;, it contain two mode to switch, when it switch to provisioner/client mode, 2 elements should be initialized,&amp;nbsp;&lt;span&gt;and when it switch to&amp;nbsp;server mode, 1 elements should be initialized&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;so, I do some changes:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;modify #define ACCESS_ELEMENT_COUNT 1 (nrf_mesh_config_app.h) &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;add#define CLIENT_ACCESS_ELEMENT_COUNT 2 (nrf_mesh_config_app.h) &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;ACCESS_ELEMENT_COUNT ===&amp;gt; CLIENT_ACCESS_ELEMENT_COUNT (provisioner_helper.c) &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;ACCESS_ELEMENT_COUNT ===&amp;gt; CLIENT_ACCESS_ELEMENT_COUNT (access.c) &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;ACCESS_ELEMENT_COUNT ===&amp;gt; CLIENT_ACCESS_ELEMENT_COUNT (composition_data.h) &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;ACCESS_ELEMENT_COUNT ===&amp;gt; CLIENT_ACCESS_ELEMENT_COUNT (composition_data.c)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;functions related to&amp;nbsp;provisioner/client mode,&amp;nbsp;ACCESS_ELEMENT_COUNT (value:1) ===&amp;gt; CLIENT_ACCESS_ELEMENT_COUNT&amp;nbsp;(value:2)&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;it&amp;nbsp;solved this provision issue, but is this&amp;nbsp;modification ok? &lt;span&gt;or do you have any suggestions for me to try?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;also,&lt;strong&gt;&lt;/strong&gt;&lt;em&gt;&lt;strong&gt;&amp;quot;your provisioner is incrementing the address with 1&amp;quot;&lt;/strong&gt;&lt;/em&gt;, what address do you mean? and why the second element of the first server &lt;span&gt;gets the next address but it didn&amp;#39;t show any log?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Erin&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/thread/338415?ContentTypeID=1</link><pubDate>Wed, 10 Nov 2021 15:00:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:51fa5d39-c8d8-457a-be16-2ab6e8695299</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Hey Erin!&lt;/p&gt;
&lt;p&gt;It seems that your provisioner is incrementing the address with 1, while there are two elements in the servers. Which makes the addresses overlap (one node gets one address along with the first element, and the second element of that node gets the next address).That might what is making a mess.&lt;/p&gt;
&lt;p&gt;In either case it seems like we are looking at address&amp;nbsp;collisions here, which typically makes very undefined behavior.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/thread/334755?ContentTypeID=1</link><pubDate>Tue, 19 Oct 2021 07:40:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f1bb19a9-8281-4203-8d8e-34bbcafce128</guid><dc:creator>erin_hong</dc:creator><description>&lt;p&gt;Hi Elfving,&lt;br /&gt;Thank you for your reply, I&amp;#39;ve try increace the CONFIG_RETRANSMIT_COUNT_MAX (/models/foundation/config/include/config_messages.h), but it still fail ocasionally..&lt;/p&gt;
&lt;p&gt;To simplify this issue, I restart from downloading the SDK, and migrate example projects again.&lt;/p&gt;
&lt;p&gt;Version (Migration):&lt;br /&gt;PC: ubunrtu 16.04&lt;br /&gt;board: nrf52832&lt;br /&gt;nRF5 SDK version: nRF5_SDK_17.1.0_ddde560&lt;br /&gt;nRF5 SDK for Mesh version: v5.0.0&lt;br /&gt;softdevice: S332&lt;br /&gt;toolchain: armgcc&lt;/p&gt;
&lt;p&gt;The steps of example projects migration:&lt;br /&gt;&lt;strong&gt;[ ble_ant_app_hrm + sdk_coexist(light switch client) ]&lt;/strong&gt; ===&amp;gt; &lt;span style="color:#339966;"&gt;clients (migration ver.)&lt;/span&gt;&lt;br /&gt;step 1. mesh SDK merge into nRF SDK&lt;br /&gt;step 2. /examples/sdk_coexist/ble_app_uart_coexist/pca10040/s132/config/sdk_config.h merge into /examples/multiprotocol/ble_ant_app_hrm/pca10040/s332/config/sdk_config.h&lt;br /&gt;step 3. nrf_mesh.h and hal.c add &amp;quot;definedS332&amp;quot;&lt;br /&gt;step 4. combain main.c of ble_ant_app_hrm + sdk_coexist&lt;br /&gt;step 5. makefile add relative .c .h CFLAGS&lt;br /&gt;step 6. create a folder &amp;quot;include&amp;quot;, put /examples/sdk_coexist/ble_app_uart_coexist/nrf_mesh_config_app.h into it&lt;br /&gt;step 7. put /examples/sdk_coexist/ble_app_uart_coexist/mesh_main.h and /examples/sdk_coexist/ble_app_uart_coexist/mesh_main.c into project folder&lt;br /&gt;step 8. nrf_mesh_config_app.h add #define GENERIC_DTT_SERVER_INSTANCES_MAX (1), #define GENERIC_ONOFF_SERVER_INSTANCES_MAX (1) and #define SCENE_SETUP_SERVER_INSTANCES_MAX (0)&lt;br /&gt;step 9. put /examples/light_switch/server/include/app_config.h into &amp;quot;include&amp;quot; folder of project&lt;br /&gt;step 10. #define APP_TIMER_CONFIG_RTC_FREQUENCY 0, #define NRF_SDH_BLE_GATT_MAX_MTU_SIZE 69 (in sdk_config.h)&lt;br /&gt;step 11. #define NRF_SDH_BLE_GATTS_ATTR_TAB_SIZE 2400, #define NRF_SDH_BLE_VS_UUID_COUNT 1 (in sdk_config.h)&lt;br /&gt;step 12. RAM (rwx):ORIGIN=0x20002968, LENGTH=0xD698 (in ble_ant_hrm_gcc_nrf52.ld)&lt;br /&gt;step 13. add .nrf_mesh_ram and .nrf_mesh_flash (in ble_ant_hrm_gcc_nrf52.ld)&lt;br /&gt;step 14. #define ACCESS_ELEMENT_COUNT (2) (in nrf_mesh_config_app.h)&lt;br /&gt;step 15. coment out ANT+ channel open (in main.c)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;[ ble_ant_app_hrm + sdk_coexist(light switch client) + light switch server ]&lt;/strong&gt; ===&amp;gt; &lt;span style="color:#339966;"&gt;server (migration ver.)&lt;/span&gt;&lt;br /&gt;step 1. base on clients (migration ver.), replace the content of mesh_main.c to the content of /examples/light_switch/server/main.c&lt;br /&gt;step 2. delete useless funtion and change function name which depands on mesh_main.h (mesh_main.c)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;[ ble_ant_app_hrm + sdk_coexist(light switch client) + provisioner ]&lt;/strong&gt;&lt;br /&gt;step 1. put /examples/provisioner/src/node_setup.c and /examples/provisioner/src/provisioner_helper.c into project folder&lt;br /&gt;step 2. put all file in /examples/provisioner/include into &amp;quot;include folder of project folder, except app_config.h and nrf_mesh_config_app.h&lt;br /&gt;step 3. #define MODEL_ACKNOWLEDGED_TRANSACTION_TIMEOUT (SEC_TO_US(10)), #define ACCESS_DEFAULT_TTL (MAX_PROVISIONEE_NUMBER &amp;gt; NRF_MESH_TTL_MAX ? NRF_MESH_TTL_MAX : MAX_PROVISIONEE_NUMBER) (nrf_mesh_config_app.h)&lt;br /&gt;step 4. #define ACCESS_MODEL_COUNT(4) (nrf_mesh_config_app.h)&lt;br /&gt;step 5. #define CONFIG_SCENARIO_COMMON delete NODE_SETUP_CONFIG_APPKEY_BIND_HEALTH and NODE_SETUP_CONFIG_PUBLICATION_HEALTH (config_scenarios.h)&lt;br /&gt;step 6. #define CONFIG_SCENARIO_COMMON delete NODE_SETUP_CONFIG_APPKEY_BIND_HEALTH and NODE_SETUP_CONFIG_PUBLICATION_HEALTH (config_scenarios.h)&lt;br /&gt;step 7. #define CONFIG_SCENARIO_LIGHT_SWITCH_CLIENT_EXAMPLE delete the second CONFIG_ONOFF_CLIENT (config_scenarios.h)&lt;br /&gt;step 8. #define CONFIG_SCENARIO_LIGHT_SWITCH_SERVER_EXAMPLE delete the second CONFIG_ONOFF_SERVER (config_scenarios.h)&lt;br /&gt;step 9. #define APP_TIMER_KEEPS_RTC_ACTIVE 1 (in sdk_config.h)&lt;br /&gt;step 10. makefile add relative .c&lt;br /&gt;step 11. /examples/provisioner/src/main.c merge into mesh_main.c&lt;br /&gt;step 12. #define DSM_SUBNET_MAX(20), #define DSM_APP_MAX(35), #define DSM_DEVICE_MAX(35), #define DSM_VIRTUAL_ADDR_MAX(15), #define DSM_NONVIRTUAL_ADDR_MAX(15) (nrf_mesh_config_app.h)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;[ ble_ant_app_hrm + sdk_coexist(light switch client) + provisioner(light switch client self provision) ]&lt;/strong&gt; ===&amp;gt; &lt;span style="color:#339966;"&gt;Provisioner/Client (migration ver.)&lt;/span&gt;&lt;br /&gt;step 1. in struct network_dsm_handles_data_volatile_t, replace health instance to generic_onoff_client_t client_instance (network_setup_types.h)&lt;br /&gt;step 2. app_default_models_bind_setup() add publish and subscription setting of light switch client (mesh_main.c)&lt;br /&gt;step 3. models_init_cb() add calback function setting of light switch client (mesh_main.c)&lt;br /&gt;step 4. mesh_main_button_event_handler() add message publish function of light switch client (mesh_main.c)&lt;br /&gt;step 5. coment out all normal BLE service (main.c)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;When use the Provisioner/Client (migration ver.) to provision and configure two devices, these situations would happen:&lt;/strong&gt;&lt;br /&gt;(1)&lt;span&gt;provision and configure&amp;nbsp;&lt;/span&gt;&lt;span&gt;two&lt;/span&gt;&lt;span&gt;&amp;nbsp;servers&amp;nbsp;(migration ver.),&amp;nbsp;&lt;/span&gt;configuration data transmition retry many times ===&amp;gt; might okay, but the process of the second server take time and fail ocasionally&lt;br /&gt;(2)after the second server (migration ver.) had provisioned and configured, the second server (migration ver.) delete provision and configuration and Provisioner/Client (migration ver.) immediately ===&amp;gt; might okay, and the process of provision and configuration will implement smoothly but fail ocasionally&lt;br /&gt;(3)provision and configure&amp;nbsp;two clients (migration ver.) ===&amp;gt;&lt;span style="color:#ff0000;"&gt; totally ok&lt;/span&gt;, even the second client would be provisioned and configured smoothly&lt;br /&gt;(4)&lt;span&gt;provision and configure&amp;nbsp;&lt;/span&gt;&lt;span&gt;two&lt;/span&gt;&lt;span&gt;&amp;nbsp;servers&amp;nbsp;(migration ver.), and&amp;nbsp;&lt;/span&gt;trun the first server off ===&amp;gt; &lt;span style="color:#ff0000;"&gt;totally ok&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;And I also use the Provisioner/Client (migration ver.) to provision and configure the light switch example form Mesh SDK&lt;br /&gt;Version (light switch example form Mesh SDK):&lt;br /&gt;PC: ubunrtu 20.04&lt;br /&gt;board: nrf52832&lt;br /&gt;nRF5 SDK version: nRF5_SDK_17.0.2_d674dde&lt;br /&gt;nRF5 SDK for Mesh version: v5.0.0&lt;br /&gt;softdevice: S332&lt;br /&gt;toolchain: armgcc&lt;/p&gt;
&lt;p&gt;(5)provision and configure&amp;nbsp;two servers (example form Mesh SDK ver.) ===&amp;gt; &lt;span style="color:#ff0000;"&gt;totally ok&lt;/span&gt;, even the second server would be provisioned and configured smoothly&lt;/p&gt;
&lt;p&gt;So, it seems like provisioner/client is work normally, but the server(migration ver.) have some unknow issue.&lt;br /&gt;Are there any configurations I didn&amp;#39;t set? or do you have any suggestions for me to try?&lt;/p&gt;
&lt;p&gt;The&amp;nbsp;&lt;span&gt;archive file below is my Client (migration ver.), server&amp;nbsp;(migration ver.), Provisioner/Client (migration ver.) project, hope it helps!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/4643.nordic_5F00_devzone_5F00_mesh_5F00_bluetooth_5F00_mesh_5F00_configuration_5F00_failure.zip"&gt;devzone.nordicsemi.com/.../4643.nordic_5F00_devzone_5F00_mesh_5F00_bluetooth_5F00_mesh_5F00_configuration_5F00_failure.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Erin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/thread/334665?ContentTypeID=1</link><pubDate>Mon, 18 Oct 2021 14:44:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e2d1befd-d8c8-4e27-a199-52b353fcc7d3</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Hey Erin!&lt;/p&gt;
&lt;p&gt;Sorry this is taking so long. I have been asking internally about this, and our mesh team has been a bit busy lately.&lt;/p&gt;
&lt;p&gt;An ACK message getting filtered out doesn&amp;#39;t seem like the most likely scenario to me. I would rather think that there is an issue with the provisioner+client node, or that the extra node leads to package collisions or that the message&amp;nbsp;fails to arrive due to other reasons.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you try increasing the retransmit count? It is 0 by default. If this doesn&amp;#39;t help we should take a closer look at the provisioner+client.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/thread/332915?ContentTypeID=1</link><pubDate>Thu, 07 Oct 2021 02:01:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b7d3dec5-8c5a-4fd5-8a4f-f5983893f612</guid><dc:creator>erin_hong</dc:creator><description>&lt;p&gt;Hi Elfving,&lt;/p&gt;
&lt;p&gt;Here is my log.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " height="434" src="https://devzone.nordicsemi.com/resized-image/__size/995x698/__key/communityserver-discussions-components-files/4/4571.png" width="643" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " height="481" src="https://devzone.nordicsemi.com/resized-image/__size/1003x737/__key/communityserver-discussions-components-files/4/25743.png" width="647" /&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Erin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/thread/332823?ContentTypeID=1</link><pubDate>Wed, 06 Oct 2021 11:52:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1484fa22-ee55-4c60-81fe-cbc0fe92a166</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Hey again Erin!&lt;/p&gt;
&lt;p&gt;Could you fix the error log images? Several of them didn&amp;#39;t seem to get uploaded.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth mesh configuration failure</title><link>https://devzone.nordicsemi.com/thread/331764?ContentTypeID=1</link><pubDate>Wed, 29 Sep 2021 14:29:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5f90d858-f2ce-4a9e-934b-e2422f5e100d</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Hey Erin!&lt;/p&gt;
&lt;p&gt;Just letting you know that I am looking into it, but I will have to get back to you.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>