<?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>app: ERROR 1 [NRF_ERROR_SVC_HANDLER_MISSING]</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/99845/app-error-1-nrf_error_svc_handler_missing</link><description>I am trying to integrate bootloader dfu to my own firmware, Firmware is working fine separately but when I add files off bootloader 
 This error comes up, and the device is not discoverable 
 app: ERROR 1 [NRF_ERROR_SVC_HANDLER_MISSING] and the error</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 08 Sep 2023 10:27:26 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/99845/app-error-1-nrf_error_svc_handler_missing" /><item><title>RE: app: ERROR 1 [NRF_ERROR_SVC_HANDLER_MISSING]</title><link>https://devzone.nordicsemi.com/thread/445107?ContentTypeID=1</link><pubDate>Fri, 08 Sep 2023 10:27:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bc6fc420-2467-416b-98d2-542147e240d4</guid><dc:creator>AIRAM</dc:creator><description>&lt;p&gt;Thanks for your time and attention to problem.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: app: ERROR 1 [NRF_ERROR_SVC_HANDLER_MISSING]</title><link>https://devzone.nordicsemi.com/thread/427032?ContentTypeID=1</link><pubDate>Tue, 23 May 2023 18:22:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:88594aca-d3b6-4137-a532-2aa1cb7dffb2</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;You might be trying the same thing which this user was trying to do in &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/83393/nrf52840-sd_softdevice_enable-returns-nrf_error_svc_handler_missing-at-0-sdk-17-1-0---s140"&gt;this &lt;/a&gt;thread. If you are trying to add bootloader and application into the same binary then you are not doing it correct. Bootloader is a separate binary flashed to different location and you normally flash the application as is.&lt;/p&gt;
&lt;p&gt;If you are merging bootloader and application into one binary, then please read the whole thread that I linked and follow the instructions of my colleague Einar described.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: app: ERROR 1 [NRF_ERROR_SVC_HANDLER_MISSING]</title><link>https://devzone.nordicsemi.com/thread/426726?ContentTypeID=1</link><pubDate>Tue, 23 May 2023 04:42:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6a643d29-548c-44e2-91a6-5f1cb913ed5c</guid><dc:creator>AIRAM</dc:creator><description>&lt;p&gt;Yes I am sure about this, The below-colored one caught the error&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;static void ble_stack_init(void)&lt;br /&gt;{&lt;br /&gt; ret_code_t err_code;&lt;/p&gt;
&lt;p&gt;err_code = nrf_sdh_enable_request();&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;APP_ERROR_CHECK(err_code);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;// Configure the BLE stack using the default settings.&lt;br /&gt; // Fetch the start address of the application RAM.&lt;br /&gt; uint32_t ram_start = 0;&lt;br /&gt; err_code = nrf_sdh_ble_default_cfg_set(APP_BLE_CONN_CFG_TAG, &amp;amp;ram_start);&lt;br /&gt; APP_ERROR_CHECK(err_code);&lt;/p&gt;
&lt;p&gt;// Enable BLE stack.&lt;br /&gt; err_code = nrf_sdh_ble_enable(&amp;amp;ram_start);&lt;br /&gt; APP_ERROR_CHECK(err_code);&lt;/p&gt;
&lt;p&gt;// Register a handler for BLE events.&lt;br /&gt; NRF_SDH_BLE_OBSERVER(m_ble_observer, APP_BLE_OBSERVER_PRIO, ble_evt_handler, NULL);&lt;br /&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: app: ERROR 1 [NRF_ERROR_SVC_HANDLER_MISSING]</title><link>https://devzone.nordicsemi.com/thread/426685?ContentTypeID=1</link><pubDate>Mon, 22 May 2023 18:48:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cc382de9-6ebd-48e2-9623-ac31b9ddb89f</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;Are you sure that the error is returned in this function? If so, which API call exactly returned this error? I mean, which APP_ERROR_CHECK caught the error from the above given code snippet?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: app: ERROR 1 [NRF_ERROR_SVC_HANDLER_MISSING]</title><link>https://devzone.nordicsemi.com/thread/426238?ContentTypeID=1</link><pubDate>Fri, 19 May 2023 11:33:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9e215ad0-9191-434a-9f79-b793bcfb81b0</guid><dc:creator>Menon</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;I am sorry, but we are short staffed this week due to Public Holidays in Norway. We will be back on Monday 22nd and hope to be able to answer all incoming requests within a couple of days, depending on the backlog. I am sorry for the inconvenience.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Abhijith&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>