<?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>How to restart (enable) the Softdevice?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/600/how-to-restart-enable-the-softdevice</link><description>Hi, 
 i need to Stop the softdivice in my application with --&amp;gt; sd_softdevice_disable	( );
This is ok, it works. But later in the applictaion i have to restart or enable the softdevie again for useing Bluetooth. I found the method
--&amp;gt; sd_softdevice_enable</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 13 Mar 2020 16:51:46 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/600/how-to-restart-enable-the-softdevice" /><item><title>RE: How to restart (enable) the Softdevice?</title><link>https://devzone.nordicsemi.com/thread/239798?ContentTypeID=1</link><pubDate>Fri, 13 Mar 2020 16:51:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ff1ca5b0-9fe5-49c4-8dfb-347040d2890a</guid><dc:creator>Di-sheng</dc:creator><description>&lt;p&gt;Hi Ole&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;It is answer I want.&lt;/p&gt;
&lt;p&gt;Di-sheng&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to restart (enable) the Softdevice?</title><link>https://devzone.nordicsemi.com/thread/3124?ContentTypeID=1</link><pubDate>Tue, 08 Oct 2013 07:22:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:88aeac87-f4af-4288-a4d7-0f126df69b5d</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;If you take a look at ble_stack_handler.c, you can see how it initializes the softdevice:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
    // Initialize SoftDevice
    err_code = sd_softdevice_enable(clock_source, softdevice_assertion_handler);
    if (err_code != NRF_SUCCESS)
    {
        return err_code;
    }

&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This softdevice_assertion_handler is declared in the upper part of main.c of most SDK applications.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>