<?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>A ble peripheral project of nrf5340</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/82888/a-ble-peripheral-project-of-nrf5340</link><description>Hi, 
 We will create a ble peripheral device and also can handle timing-critical uart request. The uart will be always communicating and response time can&amp;#39;t be slower than 20ms. 
 We want to choose nrf5340 to be our platform and have some questions: 1</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 21 Dec 2021 08:01:32 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/82888/a-ble-peripheral-project-of-nrf5340" /><item><title>RE: A ble peripheral project of nrf5340</title><link>https://devzone.nordicsemi.com/thread/344496?ContentTypeID=1</link><pubDate>Tue, 21 Dec 2021 08:01:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8bf0b2e9-9e4b-4e87-9e1c-5cd6e654c663</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In any case, the Bluetooth stack in the nRF Connect SDK consists of a host layer and a controller layer. The most common use case is to run the controller on the network core, and host on the application core. This way, the application using the Bluetooth APIs must run on the application core. This is the most common approach. Another option is to run both the host and controller on the network core, and also run the Bluetooth application on the network core. Both these are currently supported, but the latter does not suit all applications as there is a limited amount of memory on the network core. You would typically also want to use the application core for something.&lt;/p&gt;
&lt;p&gt;The third option, is where the full Bluetooth stack runs on the network core, but the Bluetooth APIs are available on the application core. This will have several advantages, both with regards to utilizing more of the network core and reducing overhead in the communication between the cores (as it happens on a higher level). However, this has recently been introduced and is currently experimental. This is quite early, and as you see form the &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/bluetooth/rpc_host/README.html#ble-rpc-host"&gt;documentation &lt;/a&gt;only GAP and connection management is support. It is useful for experimentation if you want to use that approach, but lack a lot (most) of what you need in order to use it. If you are starting development today then you can experiment with it, but I recommend you go with one of the other approaches now. If you want to know more about the timeline for the full Bluetooth stack then please ask the Nordic sales representative in your region.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: A ble peripheral project of nrf5340</title><link>https://devzone.nordicsemi.com/thread/344483?ContentTypeID=1</link><pubDate>Tue, 21 Dec 2021 07:00:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:afbd6c01-eaea-4454-b4e2-c07cbbb97100</guid><dc:creator>Jacob Lee</dc:creator><description>[quote userid="7377" url="~/f/nordic-q-a/82888/a-ble-peripheral-project-of-nrf5340/344146#344146"]Which example are you referring to here? Also, generally any implementation sand samples have limitations, so we would need to know which limitations you are interested in.[/quote]
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In this document &lt;a title="ug_nrf5340" href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/ug_nrf5340.html#full-bluetooth-le-stack"&gt;full-bluetooth-le-stack&lt;/a&gt; describes:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;The Bluetooth: Host for nRF RPC Bluetooth Low Energy sample is currently supported for development only.
It does not support all Bluetooth Host APIs yet.&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;That&amp;#39;s why we don&amp;#39;t have much confidence in full-bluetooth-stack.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;We are considering which one is better to be our initial project , &amp;quot;split controller and host&amp;quot; or &amp;quot;full-bluetooth-stack&amp;quot;?&lt;/p&gt;
&lt;p&gt;Any suggestion?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: A ble peripheral project of nrf5340</title><link>https://devzone.nordicsemi.com/thread/344146?ContentTypeID=1</link><pubDate>Fri, 17 Dec 2021 12:49:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:290a3344-d4f6-41ba-aadc-6e06c0c65c95</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi Jacob,&lt;/p&gt;
&lt;p&gt;Generally speaking 20 ms is a lot of time, so although there is not a lot of information here I would not expect you should see any issues with regards to that.&lt;/p&gt;
[quote user=""]1. If using the Split BLE Controller and Host architecture, can we integrate our application in the network core?&lt;br /&gt; If yes, which example is a good initial project?&lt;br /&gt;[/quote]
&lt;p&gt;The radio is only accessible from the network core, and so at least the link layer (controller) of the Bluetooth stack must be located there. And if your app was to be there as well, you would also need the rest of the stack there and you would easily run out of flash and RAM. Why do you want to put your application in the network core? If you are after a single core device, then perhaps the nRF52840 is more what you need?&lt;/p&gt;
[quote user=""]2. If using the Split BLE Controller and Host architecture, will the application core be interrupted by network core?&lt;br /&gt;&amp;nbsp; &amp;nbsp; If yes, how does our product to match timing requirement?[/quote]
&lt;p&gt;Yes, the application core will get interrupts from the network core. However, as the host is on the network core there is typically a lot of slack (timing wise) here, so you can have application interrupts with higher priority.&lt;/p&gt;
[quote user=""]3. Is any known limitation in the Full Bluetooth LE stack example?[/quote]
&lt;p&gt;Which example are you referring to here? Also, generally any implementation sand samples have limitations, so we would need to know which limitations you are interested in.&lt;/p&gt;
&lt;p&gt;Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>