<?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>Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/59213/receive-advertisement-packet-in-mesh-beaconing-example</link><description>Hi, 
 Got some questions about receiving adv packet in Mesh Beaconing Example: 
 According to the description &amp;quot; The beaconing example also demonstrates the usage of the Packet RX callback. This functionality allows to receive all non-filtered, BLE-compliant</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sun, 05 Apr 2020 06:00:30 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/59213/receive-advertisement-packet-in-mesh-beaconing-example" /><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/243491?ContentTypeID=1</link><pubDate>Sun, 05 Apr 2020 06:00:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2b69522a-40d5-481a-b970-fe216eff6bb5</guid><dc:creator>SHawY</dc:creator><description>&lt;p&gt;Hi Terje,&lt;/p&gt;
&lt;p&gt;It works! Many thanks for help. I must misundertand the description and thought it&amp;#39;s for advertising but not receiving...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/243359?ContentTypeID=1</link><pubDate>Fri, 03 Apr 2020 09:55:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e79bbb6d-e80a-43cb-bb57-9962769728d5</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The beaconing example, while documentation for &amp;quot;testing&amp;quot; states it prints all incoming packets and documentation for &amp;quot;RX callback&amp;quot; states it can receive all non-filtered packets, actually does use a filter on BLE_GAP_AD_TYPE_COMPLETE_LOCAL_NAME. The callback will only be called for packets with this advertising data type in them.&lt;/p&gt;
&lt;p&gt;The filter is set in the function adv_start(), in main.c:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;    /* Let scanner accept Complete Local Name AD Type. */
    bearer_adtype_add(BLE_GAP_AD_TYPE_COMPLETE_LOCAL_NAME);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;The filter is employed for all packets before they get sent to the Scanner module, which again is responsible for calling the callback. You can read more about filtering in the&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.meshsdk.v4.1.0%2Fgroup__MESH__API__GROUP__BEARER__FILTER.html"&gt;Packet filtering API documentation&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I have reported documentation bugs internally, for updating Beaconing example documentation to reflect the behavior of the example, as well as clarify the behavior of the Scanner in relation to Packet filtering in the Scanner API documentation.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/242871?ContentTypeID=1</link><pubDate>Wed, 01 Apr 2020 08:59:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3dee2309-f1f6-4293-8368-aea3dfc484a7</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am able to reproduce. Looking into why this may be.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/242812?ContentTypeID=1</link><pubDate>Wed, 01 Apr 2020 01:28:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e4d014e6-a93a-4c6a-96a0-d87ebaba04a1</guid><dc:creator>SHawY</dc:creator><description>&lt;p&gt;Hi Terje,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m sure I&amp;#39;m using the unmodified files. Here&amp;#39;s what I tried:&lt;/p&gt;
&lt;p&gt;I create two advertiser which advertising User Data, the first one advertsing the Local Name as well.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/1040x360/__key/communityserver-discussions-components-files/4/Screenshot_5F00_20200401_2D00_141141_5F005F00_01.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;When I enable either of them or both, only the one with Local Name can be found during scanning (ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344)&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;lt;t:          0&amp;gt;, main.c,  218, ----- Bluetooth Mesh Beacon Example -----
&amp;lt;t:      12870&amp;gt;, main.c,  224, Initialization complete!
&amp;lt;t:      17601&amp;gt;, mesh_app_utils.c,   65, Device UUID (raw): 83C4140939D7514483FD76458708046C
&amp;lt;t:      17605&amp;gt;, mesh_app_utils.c,   66, Device UUID : 0914C483-D739-4451-83FD-76458708046C
&amp;lt;t:      17616&amp;gt;, main.c,  253, Bluetooth Mesh Beacon example started!
&amp;lt;t:     113982&amp;gt;, main.c,   87, RX [@3478019]: RSSI: -86 ADV TYPE: 0 ADDR: [8a:08:6c:8d:cd:c0]: 0709534D492D4D31031900000201060F1695FE3120A1011D8A086C8DCDC00D
&amp;lt;t:     175528&amp;gt;, main.c,   87, RX [@5356307]: RSSI: -86 ADV TYPE: 0 ADDR: [8a:08:6c:8d:cd:c0]: 0709534D492D4D31031900000201060F1695FE3120A1011D8A086C8DCDC00D
&amp;lt;t:     299087&amp;gt;, main.c,   87, RX [@9127103]: RSSI: -88 ADV TYPE: 0 ADDR: [8a:08:6c:8d:cd:c0]: 0709534D492D4D31031900000201060F1695FE3120A1011D8A086C8DCDC00D
&amp;lt;t:     360440&amp;gt;, main.c,   87, RX [@10999283]: RSSI: -89 ADV TYPE: 0 ADDR: [8a:08:6c:8d:cd:c0]: 0709534D492D4D31031900000201060F1695FE3120A1011D8A086C8DCDC00D
&amp;lt;t:     362671&amp;gt;, main.c,   87, RX [@11067431]: RSSI: -64 ADV TYPE: 4 ADDR: [50:9c:36:34:2d:58]: 09094D4A5F48545F563105030F180A180916FFFFD65F151E817F
&amp;lt;t:     428411&amp;gt;, main.c,   87, RX [@13073674]: RSSI: -72 ADV TYPE: 4 ADDR: [50:9c:36:34:2d:58]: 09094D4A5F48545F563105030F180A180916FFFFD65F151E817F
&amp;lt;t:     483872&amp;gt;, main.c,   87, RX [@14766208]: RSSI: -88 ADV TYPE: 0 ADDR: [8a:08:6c:8d:cd:c0]: 0709534D492D4D31031900000201060F1695FE3120A1011D8A086C8DCDC00D
&amp;lt;t:     516380&amp;gt;, main.c,   87, RX [@15758347]: RSSI: -63 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     525718&amp;gt;, main.c,   87, RX [@16043348]: RSSI: -66 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     535036&amp;gt;, main.c,   87, RX [@16327704]: RSSI: -61 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     544388&amp;gt;, main.c,   87, RX [@16613116]: RSSI: -63 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     545312&amp;gt;, main.c,   87, RX [@16641227]: RSSI: -87 ADV TYPE: 0 ADDR: [8a:08:6c:8d:cd:c0]: 0709534D492D4D31031900000201060F1695FE3120A1011D8A086C8DCDC00D
&amp;lt;t:     563025&amp;gt;, main.c,   87, RX [@17181865]: RSSI: -67 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     572322&amp;gt;, main.c,   87, RX [@17465615]: RSSI: -67 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     581784&amp;gt;, main.c,   87, RX [@17754364]: RSSI: -78 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     591204&amp;gt;, main.c,   87, RX [@18041864]: RSSI: -69 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     600830&amp;gt;, main.c,   87, RX [@18335615]: RSSI: -73 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     607049&amp;gt;, main.c,   87, RX [@18525331]: RSSI: -87 ADV TYPE: 0 ADDR: [8a:08:6c:8d:cd:c0]: 0709534D492D4D31031900000201060F1695FE3120A1011D8A086C8DCDC00D
&amp;lt;t:     610275&amp;gt;, main.c,   87, RX [@18623857]: RSSI: -63 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     619532&amp;gt;, main.c,   87, RX [@18906358]: RSSI: -63 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344
&amp;lt;t:     628911&amp;gt;, main.c,   87, RX [@19192608]: RSSI: -63 ADV TYPE: 6 ADDR: [a4:e8:6c:8a:31:45]: 0E094F6E65506C757320372050726F07161C1811223344&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/242443?ContentTypeID=1</link><pubDate>Mon, 30 Mar 2020 13:20:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bc7a18b0-2f75-44ba-8297-192d445174f6</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Going back to what output to expect from the example, this is the log I get when testing here (with a few BLE devices in the area):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;lt;t:          0&amp;gt;, main.c,  218, ----- Bluetooth Mesh Beacon Example -----
&amp;lt;t:      13970&amp;gt;, main.c,  224, Initialization complete!
&amp;lt;t:      18734&amp;gt;, mesh_app_utils.c,   65, Device UUID (raw): 073D03C4720B6745AB6E06D305F13C5E
&amp;lt;t:      18737&amp;gt;, mesh_app_utils.c,   66, Device UUID : C4033D07-0B72-4567-AB6E-06D305F13C5E
&amp;lt;t:      18748&amp;gt;, main.c,  253, Bluetooth Mesh Beacon example started!
&amp;lt;t:      33706&amp;gt;, main.c,   87, RX [@1028329]: RSSI: -82 ADV TYPE: 4 ADDR: [c6:54:7a:9b:36:f8]: 0B0972757769646F20424C45
&amp;lt;t:     133396&amp;gt;, main.c,   87, RX [@4070477]: RSSI: -92 ADV TYPE: 4 ADDR: [b7:34:ba:c7:52:04]: 020A0A1B094C452D426F736520436F6C6F7220494920536F756E644C696E6B
&amp;lt;t:     192247&amp;gt;, main.c,   87, RX [@5866604]: RSSI: -81 ADV TYPE: 4 ADDR: [d2:9e:a7:a1:41:2c]: 020A080E094C452D72657365727665645F43
&amp;lt;t:     314305&amp;gt;, main.c,   87, RX [@9591431]: RSSI: -89 ADV TYPE: 4 ADDR: [b7:34:ba:c7:52:04]: 020A0A1B094C452D426F736520436F6C6F7220494920536F756E644C696E6B
&amp;lt;t:     605565&amp;gt;, main.c,   87, RX [@18480001]: RSSI: -84 ADV TYPE: 4 ADDR: [76:7b:a7:a1:41:2c]: 020A0816094C452D426F736520467265652048656E72696B6B65
&amp;lt;t:     769199&amp;gt;, main.c,   87, RX [@23473756]: RSSI: -82 ADV TYPE: 4 ADDR: [d2:9e:a7:a1:41:2c]: 020A080E094C452D72657365727665645F43&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Comparing it to the log that you provided earlier, I see that the line numbers for corresponding log outputs do not match. Can you double check that you are using the unmodified example from the &amp;lt;SDK folder&amp;gt;/examples/beaconing/ folder? (With unmodified main.c in the src folder of that folder.)&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/242276?ContentTypeID=1</link><pubDate>Mon, 30 Mar 2020 04:11:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e09e7620-c48c-40a9-9f5a-21e60806d3b5</guid><dc:creator>SHawY</dc:creator><description>&lt;p&gt;Yes I tried... No problem receiving advertisements through nRF Connect for iOS, could&amp;nbsp;discover them both.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/242065?ContentTypeID=1</link><pubDate>Fri, 27 Mar 2020 10:23:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c388ca7e-ea05-488f-b96f-1e14af8b6aee</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;There should not be any such restriction for the scanner in the beaconing example, no. It should detect all advertisements on the same phy as the mesh stack is running.&lt;/p&gt;
&lt;p&gt;It may be an issue on the sender side. Have you checked to see if you receive advertisements through nRF Connect? (Either a separate session of nRF Connect for desktop, or using nRF Connect for iOS or Android.)&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/241692?ContentTypeID=1</link><pubDate>Thu, 26 Mar 2020 00:24:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:53676e38-6fa0-4d69-911e-8f21ecd12006</guid><dc:creator>SHawY</dc:creator><description>&lt;p&gt;Hi Terje,&lt;/p&gt;
&lt;p&gt;Much thanks for explainations. I created two advertisers in nRF Connect which advertising the same Service Data. The only different is one with Complete Local Name and the other didn&amp;#39;t - and the scanner can only print the packet which advertising with the name. That&amp;#39;s why I wonder if it is&amp;nbsp;&lt;span&gt;necessary. Do you have any idea about this?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The purpose using coded phy is trying to extend the range as much as possible in my senario. Maybe I need more test to see if it&amp;#39;s necessary...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/241072?ContentTypeID=1</link><pubDate>Mon, 23 Mar 2020 10:20:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9105e569-faf8-4b2d-8da7-f0d6a4e9fbd5</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;With the callback from the mesh stack (registered with nrf_mesh_rx_cb_set) you will only get advertisements on the same phy as the mesh is running on. That means if you look for &amp;quot;normal&amp;quot; advertisements using 1Mbit and the mesh stack runs on coded phy you will not find those normal advertisements. The mesh stack calls the callback on all advertisements that it detects, there is no requirement of e.g. name.&lt;/p&gt;
&lt;p&gt;As mentioned in that other thread, on-air time for coded phy messages is eight times longer than for 1Mbit. This means two things: First, the chance of an advertisement packet arriving fully within a scan window is smaller. Second, the chance of a packet getting lost to noise/interference may increase (despite of the added error correction,) depending of the type of noise. Thus, which phy is best depends on the use case and RF environment.&lt;/p&gt;
&lt;p&gt;The mesh stack uses all available time for scanning. That is, when it does not need to send a packet it will scan. Values used by the mesh stack are BEARER_SCAN_INT_DEFAULT_MS and BEARER_SCAN_WINDOW_DEFAULT_MS, which are defined along with other parameters in &amp;lt;sdk root folder&amp;gt;/mesh/bearer/api/nrf_mesh_config_bearer.h. All of those can be overridden by defining them as preprocessor defines, so there is no need to change the mesh stack files for using other values.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/241012?ContentTypeID=1</link><pubDate>Sun, 22 Mar 2020 22:42:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e45bdb91-2a0d-4cee-8701-2af01732371c</guid><dc:creator>SHawY</dc:creator><description>&lt;p&gt;Hi Terje,&lt;/p&gt;
&lt;p&gt;I have changed back to default mode and now I can find other advertisements. However I found that only beacon with name can be found - I also tried create different advertiser in nRF Connect App and got the same result. Do I have to advertise the name to find them?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I also tried implement the&amp;nbsp;&lt;span&gt;nRF5 SDK scanner with mesh stack. You are right I got problems with&amp;nbsp;time-division multiplexing. It would be better if the&amp;nbsp;rx_cb could work properly.&amp;nbsp;Is there anywhere I can change the scan window and interval for beaconing example?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I modified long range according to&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/29813/change-phy-in-mesh"&gt;this&lt;/a&gt;. It could works with the light switch example.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/240872?ContentTypeID=1</link><pubDate>Fri, 20 Mar 2020 12:52:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:19f6bf75-2193-4fed-8b25-74f065fa7fdb</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Bluetooth mesh is actually only running on the 1Mbit mode from Bluetooth 4.2, and does not use neither 2Mbit nor long range features from Bluetooth 5. The advertising packet callback that you use for scanning while simultaneously running Bluetooth mesh, must use the same phy as used for the mesh protocol.&lt;/p&gt;
&lt;p&gt;While it is possible to use the scanner from the nRF5 SDK together with the mesh stack from nRF5 SDK for Mesh, it is not recommended as it means radio time is then time-division multiplexed between mesh stack and BLE stack. (Only one of the stacks has access to the radio at any given point in time.)&lt;/p&gt;
&lt;p&gt;You mention that you have no problem using long range with other examples, which other examples have you successfully used long range on?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/240729?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2020 20:55:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3f899155-5d0c-4557-8766-e8105de5c08e</guid><dc:creator>SHawY</dc:creator><description>&lt;p&gt;Hi Terje,&lt;/p&gt;
&lt;p&gt;Thanks for answering. I&amp;#39;m using&amp;nbsp;&lt;span&gt;nRF52840 DK (the PCA10056 v1.1.0)&amp;nbsp;,nRF5 SDK for Mesh 4.0 and nRF Connect for Android v4.24.1. My device is OnePlus 7.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I have modified the RADIO_POWER to&amp;nbsp;POS8DBM and&amp;nbsp;RADIO_MODE to&amp;nbsp;RADIO_MODE_NRF_62K5BIT in order to enable long range.&amp;nbsp;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I flashed another board with beaconing example, I notice that they can find each other and the&amp;nbsp;advertisement packet contain&amp;nbsp;the name&amp;quot;Nordic Semi Mesh&amp;quot;. So actually it&amp;#39;s advertising but I don&amp;#39;t know why the App can&amp;#39;t find it...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Update: I change the RADIO_MODE back to default&amp;nbsp;&lt;/span&gt;RADIO_MODE_BLE_1MBIT and now the App can&amp;nbsp;find the node. So this is the reason for discovering but the node still can&amp;#39;t scan for other&amp;nbsp;&lt;span&gt;advertising packets. And I&amp;#39;m not quite understand why there&amp;#39;s no problem using long range radio mode with other example but not the beaconing. Any help with that?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/240689?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2020 15:17:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:23eaccae-d84c-4efd-8103-afd37f68cefb</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have now tested the examples/beaconing/ example from the nRF5 SDK for Mesh v4.0.0, on an nRF52840 DK (the PCA10056 v1.0.0) and it works just as in the descriptions here. I get prints for advertising packets scanned from several other devices, and the device itself advertises as &amp;quot;Nordic Semi Mesh&amp;quot; as seen from nRF Connect for Android.&lt;/p&gt;
&lt;p&gt;What board are you using?&lt;br /&gt;What version of the nRF5 SDK for Mesh?&lt;br /&gt;Have you done any modification to the example?&lt;br /&gt;What version of nRF Connect, and on which device?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/240521?ContentTypeID=1</link><pubDate>Wed, 18 Mar 2020 21:23:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2cb063c9-1713-485d-9ceb-5d3d94395001</guid><dc:creator>SHawY</dc:creator><description>&lt;p&gt;Hi Terje,&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s what I got after I flash the example,&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;lt;t: 0&amp;gt;, main.c, 225, ----- Bluetooth Mesh Beacon Example -----&lt;br /&gt;&amp;lt;t: 13436&amp;gt;, main.c, 231, Initialization complete!&lt;br /&gt;&amp;lt;t: 18239&amp;gt;, advertiser.c, 323, advertiser_enable&lt;br /&gt;&amp;lt;t: 18241&amp;gt;, prov_bearer_adv.c, 408, PB-ADV: context at 0x20002F64 added to bearer&lt;br /&gt;&amp;lt;t: 18246&amp;gt;, mesh_app_utils.c, 65, Device UUID (raw): D5663AB3804DC24FB36A7B17B215CC75&lt;br /&gt;&amp;lt;t: 18249&amp;gt;, mesh_app_utils.c, 66, Device UUID : B33A66D5-4D80-4FC2-B36A-7B17B215CC75&lt;br /&gt;&amp;lt;t: 18257&amp;gt;, net_beacon.c, 368, net_beacon_enable&lt;br /&gt;&amp;lt;t: 18263&amp;gt;, main.c, 260, Bluetooth Mesh Beacon example started!&lt;/p&gt;
&lt;p&gt;And nothing print else while actually there are several ble device advertsing nearby. Until I turn on a mesh node I got this:&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&amp;lt;t: 7783267&amp;gt;, net_beacon.c, 419, SNB RX ID: 54D021362603E40E ivu: 0 kr: 0 IV: 0&lt;br /&gt;&amp;lt;t: 7783275&amp;gt;, main.c, 87, RX [@237524360]: RSSI: -20 ADV TYPE: 2 ADDR: [98:fe:b7:55:a6:eb]: 172B010054D021362603E40E00000000C1ABE802E7AEC2C7&lt;br /&gt;&amp;lt;t: 8102924&amp;gt;, net_beacon.c, 419, SNB RX ID: 54D021362603E40E ivu: 0 kr: 0 IV: 0&lt;br /&gt;&amp;lt;t: 8102932&amp;gt;, main.c, 87, RX [@247279514]: RSSI: -23 ADV TYPE: 2 ADDR: [98:fe:b7:55:a6:eb]: 172B010054D021362603E40E00000000C1ABE802E7AEC2C7&lt;br /&gt;&amp;lt;t: 8454414&amp;gt;, net_beacon.c, 419, SNB RX ID: 54D021362603E40E ivu: 0 kr: 0 IV: 0&lt;br /&gt;&amp;lt;t: 8454422&amp;gt;, main.c, 87, RX [@258006141]: RSSI: -24 ADV TYPE: 2 ADDR: [98:fe:b7:55:a6:eb]: 172B010054D021362603E40E00000000C1ABE802E7AEC2C7&lt;/p&gt;
&lt;p&gt;The example should also advertise it&amp;#39;s name(&amp;quot;Nordic Semi Mesh&amp;quot;) according to the instruction but I can&amp;#39;t find such node in nRF Connect App.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Receive Advertisement Packet in Mesh Beaconing Example</title><link>https://devzone.nordicsemi.com/thread/240417?ContentTypeID=1</link><pubDate>Wed, 18 Mar 2020 12:03:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8e74597c-fa72-43f8-8e86-e9aacba69e0e</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;HI,&lt;/p&gt;
&lt;p&gt;The Beaconing example should print info for all packets received, as is. This is done in main.c with the function rx_cb, which is a callback function that gets registered by the line &amp;quot;nrf_mesh_rx_cb_set(rx_cb);&amp;quot; in mesh_init() also in main.c.&lt;/p&gt;
&lt;p&gt;What does the output that you do get look like? Can you share it?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>