<?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>undefined reference to `nrf_pwr_mgmt_shutdown&amp;#39;</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/65157/undefined-reference-to-nrf_pwr_mgmt_shutdown</link><description>I have added the include and src. file paths to the MAKEFILE and yet I am experiencing this error. 
 I tried deleting the main.c.o file too, but am still experiencing this issue.</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 09 Oct 2020 12:38:01 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/65157/undefined-reference-to-nrf_pwr_mgmt_shutdown" /><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/274039?ContentTypeID=1</link><pubDate>Fri, 09 Oct 2020 12:38:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6825c4a4-7869-40a4-95fd-623a54aefe80</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello again RID,&lt;/p&gt;
[quote user="RJD"]Hope you are doing good.&amp;nbsp;[/quote]
&lt;p&gt;I am, thank you for asking! I hope you are good as well.&lt;/p&gt;
[quote user="RJD"]I needed a help with regards to changing my Button&amp;#39;s Configurations.[/quote]
&lt;p&gt;l will answer the question you have posed here, but for future reference please open a new ticket for new questions that diverge from the original ticket. This will ensure that the forum is tidy and easy to navigate for other users.&lt;/p&gt;
[quote user="RJD"]I wanted to change their Natural states from Active HIGH to Active Low and read High inputs.&amp;nbsp;[/quote]
&lt;p&gt;This is not correct, and contradicting itself. The buttons on &lt;a href="https://infocenter.nordicsemi.com/topic/ug_nrf52840_dk/UG/nrf52840_DK/hw_buttons_leds.html"&gt;the nRF52840 DK is active low&lt;/a&gt;, meaning that they are pulled up with an internal resistor, and registering a transition to GND ( thus the name, active low ). If you were to have a button active low, which should read high inputs ( assuming this means register and react to transitions to high ), then it would fire constantly, since it is being pulled up. Changing the buttons to active high would require a change in Hardware on the DK, since the button now connects the pin to ground.&lt;/p&gt;
[quote user="RJD"]I wanted to wake up using an Interrupt by a sensor. The interrupt is a High pulse.[/quote]
&lt;p&gt;If this is what you seek to do, then you should use the &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fps_nrf52840%2Fgpiote.html"&gt;GPIOTE peripheral directly&lt;/a&gt; instead - which is what the bsp ( buttons ) are doing behind the scenes.&lt;br /&gt;It sounds to me like you should use a PORT event in your application, the general approach will then look something like the following:&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;..
err_code = nrfx_gpiote_init();
APP_ERROR_CHECK(err_code);
..
nrfx_gpiote_in_config_t config = GPIOTE_CONFIG_IN_SENSE_TOGGLE(false);
config.pull = NRF_GPIO_PIN_PULLDOWN;
..
err_code = nrfx_gpiote_in_init(pin, &amp;amp;config, gpiote_event_handler);
APP_ERROR_CHECK(err_code);
..
nrfx_gpiote_in_event_enable(pin, true);
..&lt;/pre&gt;&lt;br /&gt;The complete &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/group__nrfx__gpiote.html"&gt;GPIOTE API Reference is available here&lt;/a&gt;.&lt;br /&gt;You can see how this can be done in the app_timer.c&amp;#39;s&amp;nbsp;&lt;em&gt;app_button_init&amp;nbsp;&lt;/em&gt;and&amp;nbsp;&lt;em&gt;app_button_enable&lt;/em&gt; function.&lt;br /&gt;&lt;br /&gt;There are also a lot of other tickets on the forum that discuss how to enable wake-up from an external sensor interrupt, with available code.&lt;/p&gt;
[quote user="RJD"]Also could you please provide me with a way to directly get you on my future issues rather than any othe engineer? You have been really helpful and I do not want any old tickets hanging on your profile.[/quote]
&lt;p&gt;I am happy to hear that you have found my answers helpful! Unfortunately, there is no way to guarantee that a specific case will be assigned to me, but I thank you for expressing that!&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/273889?ContentTypeID=1</link><pubDate>Fri, 09 Oct 2020 01:02:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fe819419-339d-48e8-a231-777d7db4d988</guid><dc:creator>RJD</dc:creator><description>&lt;p&gt;I am using the pwr_mgmt example where&amp;nbsp; reset event is generated by pressing the Button 2 to wake up the device. I wanted to wake up using an Interrupt by a sensor. The interrupt is a High pulse.&lt;/p&gt;
&lt;p&gt;When i press the button, the port is grounded and that acts as a trigger. I want the pulse to be the trigger to wake it up. How can I change the button&amp;#39;s configuration from LOW to HIGH, to wake it up again i.e. to make the Buttons active LOW and Take a High Signal as an input&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/273862?ContentTypeID=1</link><pubDate>Thu, 08 Oct 2020 18:51:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:006e2be4-259f-41da-a58b-974382b42e95</guid><dc:creator>RJD</dc:creator><description>&lt;p&gt;Hello Karl,&lt;/p&gt;
&lt;p&gt;Hope you are doing good.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I needed a help with regards to changing my Button&amp;#39;s Configurations.&lt;/p&gt;
&lt;p&gt;I wanted to change their Natural states from Active HIGH to Active Low and read High inputs.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also could you please provide me with a way to directly get you on my future issues rather than any othe engineer? You have been really helpful and I do not want any old tickets hanging on your profile.&lt;/p&gt;
&lt;p&gt;Thank you&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/270886?ContentTypeID=1</link><pubDate>Tue, 22 Sep 2020 14:03:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2eaea061-268c-4e15-b6fa-d50d04b9ece9</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
[quote user="RJD"]I have got the solution to the&amp;nbsp; image issue. [/quote]
&lt;p&gt;I am happy to hear that you were able to resolve this issue. I would warn you that your path is very long - possibly nearing window&amp;#39;s limit of 244 characters. If you are not exceeding this already, you should be aware of it if you path should grow even longer.&lt;/p&gt;
[quote user="RJD"]Please help me with the SYSTEM_OFF problem[/quote]
&lt;p&gt;[quote user="RJD"][/quote]&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;&lt;span&gt;confirm that I intend on the device going to SYSTEM_OFF ( lowest power consumption ), when I say &amp;quot;go to sleep&amp;quot;.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I also called the nrf_pwr_mgmt_run() in the main loop,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you for confirming this. It is good that you are now running&amp;nbsp;&lt;em&gt;nrf_pwm_mgmt_run&lt;/em&gt; in the main loop now - this should reduce your power consumption when the device is awake and idle.&lt;br /&gt;&lt;br /&gt;In order to go to SYSTEM OFF, you will need to prepare the device, so that it knows what to wake from, such as button-presses or other external interrupts.&lt;br /&gt;A simple version of this could look something like the function shown below:&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void sleep_mode_enter(void)
{
    ret_code_t err_code;
    
    //make DK indicate IDLE
    err_code = bsp_indication_set(BSP_INDICATE_IDLE);
    APP_ERROR_CHECK(err_code);

    // Prepare wakeup buttons to trigger wakeup.
    err_code = bsp_btn_ble_sleep_mode_prepare();
    APP_ERROR_CHECK(err_code);

    // Go to system-off mode 
    // this function will not return. wakeup will cause a reset.
    err_code = sd_power_system_off();
    APP_ERROR_CHECK(err_code);
}&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;This button configuration is one of the few things that is retained through SYSTEM OFF.&lt;br /&gt;&lt;br /&gt;Is there any errors generated when you call any of these functions?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/270692?ContentTypeID=1</link><pubDate>Mon, 21 Sep 2020 21:25:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:736a97a1-ade7-4416-964f-1818b546423b</guid><dc:creator>RJD</dc:creator><description>&lt;p&gt;Hello Karl, I have got the solution to the&amp;nbsp; image issue. Please help me with the SYSTEM_OFF problem&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/270691?ContentTypeID=1</link><pubDate>Mon, 21 Sep 2020 20:49:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:91a5fcbb-e45d-4301-8e3c-136432c00fed</guid><dc:creator>RJD</dc:creator><description>&lt;p&gt;Hello Karl,&lt;/p&gt;
&lt;p&gt;Thank you for your reply.&lt;/p&gt;
&lt;p&gt;Yes , I&amp;nbsp;&lt;span&gt;confirm that I intend on the device going to SYSTEM_OFF ( lowest power consumption ), when I say &amp;quot;go to sleep&amp;quot;.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I also called the nrf_pwr_mgmt_run() in the main loop, but now i started getting the error of the image&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/7080.Screenshot-_2800_11_2900_.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I tried the solutions in this link-&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/33850/nrf_section_iter-problem-with-sdk-15-and-armgcc"&gt;devzone.nordicsemi.com/.../nrf_section_iter-problem-with-sdk-15-and-armgcc&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/270517?ContentTypeID=1</link><pubDate>Mon, 21 Sep 2020 09:33:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d983b746-82f8-49f8-ad15-b8497d3c43d5</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
[quote user="RJD"]I actually want my device to go to sleep when there is an inactivity and wake up on an interrupt from a sensor, take 20 readings and then go back to sleep and wake up again on an interrupt. I do not wnat to use soft devices&amp;nbsp;[/quote]
&lt;p&gt;Ah, my apologies, I made a wrong assumption that you were using the SoftDevice.&lt;br /&gt;When you say &amp;quot;go to sleep&amp;quot;, do you mean go to &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fps_nrf52840%2Fpower.html&amp;amp;anchor=unique_1227688711"&gt;SYSTEM_OFF&lt;/a&gt;&amp;nbsp;( lowest power consumption )&amp;nbsp;- i.e the device being completely off, and waking only with a reset, or do you mean go to &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fps_nrf52840%2Fpower.html&amp;amp;anchor=unique_2145237651"&gt;SYSTEM_ON&lt;/a&gt;( some subsystems retaining power )?&amp;nbsp;&lt;/p&gt;
[quote user="RJD"]Also, here is the code snippet I am working on in accordance to the power management library:-&amp;nbsp;[/quote]
&lt;p&gt;Have you seen how the power management module is used in other examples, such as the&amp;nbsp; &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/ble_sdk_app_proximity.html"&gt;Proximity example&lt;/a&gt;? In the code snippet you shared, you are calling nrf_pwr_mgm_run outside the main loop - it is supposed to be called in a loop, to ensure that you are in the lower power state whenever nothing else is being done. This is why in most applications, the nrf_pwr_mgmt_run function is the only thing happening in the main-while loop - the rest is handled in event handlers and ISR&amp;#39;s.&lt;br /&gt;I am not sure that it makes sense for you to call nrf_pwr_mgmt_run as you are doing right now, unless you intend on your application waking up and configuring logging, then going to a low power SYSTEM ON state, before receiving an interrupt of any kind and continuing into the while loop. I am not sure this is what you have inteded.&lt;/p&gt;
[quote user="RJD"]Also, kindly please let me know the function(s) to put it to sleep and the function calls or the button commands to wake it up from sleep.[/quote]
&lt;p&gt;Please confirm for me whether you intend on the device going to SYSTEM_OFF, when you say &amp;quot;go to sleep&amp;quot;. nrf_pwr_mgmt_run places the device in a low power SYSTEM ON state, not in SYSTEM OFF.&lt;br /&gt;If you are in a low power SYSTEM ON state, then the device will be wake from any interrupt. If you are in SYSTEM OFF state, then you will need an external interrupt.&lt;br /&gt;It might be beneficial to &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/63275/sleep-mode-system-off-works-but-not-system-on"&gt;read the answers by my colleague Edvin in this ticket&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/270202?ContentTypeID=1</link><pubDate>Fri, 18 Sep 2020 03:04:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:14a9edf3-95ad-4340-bbb1-a081ebcff615</guid><dc:creator>RJD</dc:creator><description>&lt;p&gt;Also, kindly please let me know the function(s) to put it to sleep and the function calls or the button commands to wake it up from sleep. and where to place it and what are the alternative functions to use in place of the above ones I used in the code&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/270198?ContentTypeID=1</link><pubDate>Fri, 18 Sep 2020 01:45:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e89655ca-b44c-4ae3-a4cf-d2037e6375a9</guid><dc:creator>RJD</dc:creator><description>&lt;p&gt;Also, here is the code snippet I am working on in accordance to the power management library:-&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt; main(){
 bsp_board_init(BSP_INIT_LEDS);
bsp_board_init(BSP_INIT_BUTTONS);

    APP_ERROR_CHECK(NRF_LOG_INIT(NULL));
    NRF_LOG_DEFAULT_BACKENDS_INIT();
    
     nrf_pwr_mgmt_run();
     while (1)
    {
       
       NRF_LOG_INFO(&amp;quot;MCU WAKE UP&amp;quot;);
       NRF_LOG_FLUSH();

        for(int i=0;i&amp;lt;2;i++){
            bsp_board_led_on(1);
        
            nrf_delay_ms(500);

            bsp_board_led_off(1);
            nrf_delay_ms(1000);
        //bsp_board_led_on(0);

            NRF_LOG_INFO(&amp;quot;THIS SHOULD BE DISPLAYED&amp;quot;);
            NRF_LOG_FLUSH();
        }
   
        bsp_wakeup_button_enable(1);
    nrf_pwr_mgmt_shutdown(NRF_PWR_MGMT_SHUTDOWN_GOTO_SYSOFF);
//sd_power_system_off();
    NRF_LOG_INFO(&amp;quot;SHOULD NOT BE DISPLAYED&amp;quot;);
    NRF_LOG_FLUSH();
if(bsp_button_is_pressed(1)){
 NVIC_SystemReset();   
}
    
}    
    
    &lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/270191?ContentTypeID=1</link><pubDate>Thu, 17 Sep 2020 23:01:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:af10380b-5371-4112-9ee1-ac6c23895621</guid><dc:creator>RJD</dc:creator><description>&lt;p&gt;Hello Karl, Hope you are doing good.&lt;/p&gt;
&lt;p&gt;I actually want my device to go to sleep when there is an inactivity and wake up on an interrupt from a sensor, take 20 readings and then go back to sleep and wake up again on an interrupt. I do not wnat to use soft devices&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/266896?ContentTypeID=1</link><pubDate>Fri, 28 Aug 2020 08:14:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f86d056b-f5a4-4eff-88fc-d14e52a77302</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
[quote user="RJD"]Thank you for your help.[/quote]
&lt;p&gt;No problem at all, I am happy to help!&lt;/p&gt;
[quote user="RJD"]I&lt;span&gt;&amp;nbsp;am currently using&amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;nrf_power_system_off(); to put the nrf52840 dk to sleep.&lt;/span&gt;[/quote]
&lt;p&gt;I would not recommend this. Please have a look at the &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.sdk5.v15.2.0%2Fgroup__nrf__power__hal.html&amp;amp;anchor=ga62c38edd6b2eecf7ff0a8e779501b79c"&gt;nrf_power_system_off&lt;/a&gt;&amp;nbsp;documentation.&lt;/p&gt;
[quote user="RJD"]Could you please help me with how to wake it up in normal mode? All I am getting are putting to sleep with soft device enabled or with low power mode. I am not using any of them. I am simply calling the functions and want to wake up the device using an interrupt(using if statement to read the gpio).&amp;nbsp;&amp;nbsp;[/quote]
&lt;p&gt;What is your desired behavior here, I am not sure I understand. You would like the the device to be in SYSTEM OFF mode, and wake on a GPIO level change?&lt;br /&gt;Be advised that the CPU is not running in SYSTEM OFF, so no code will be executed - i.e you may not check anything with an if statement.&lt;br /&gt;&lt;br /&gt;I would recommend that you use the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/group__nrf__pwr__mgmt.html"&gt;power management module&lt;/a&gt;&amp;nbsp;instead of the power HAL.&lt;br /&gt;You may see how this module is used in most of the SDK examples, for instance the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/ble_sdk_app_beacon.html"&gt;BLE beacon example&lt;/a&gt;. They demonstrate how easy the power management module is to work with. When the device goes into low power mode here ( nrf_pwr_mgmt_run ) the device will be sleeping, but wake on interrupts.&lt;br /&gt;&lt;br /&gt;Please do not hesitate to let me know if anything should be unclear, or if you encounter any issues or questions.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;em&gt;&lt;/em&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/266819?ContentTypeID=1</link><pubDate>Thu, 27 Aug 2020 18:02:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fee3005f-4ac7-4509-bad8-9b21ac0e2ad8</guid><dc:creator>RJD</dc:creator><description>&lt;p&gt;Hello Karl, Thank you for your help.I&lt;span&gt;&amp;nbsp;am currently using&amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;nrf_power_system_off(); to put the nrf52840 dk to sleep.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Could you please help me with how to wake it up in normal mode? All I am getting are putting to sleep with soft device enabled or with low power mode. I am not using any of them. I am simply calling the functions and want to wake up the device using an interrupt(using if statement to read the gpio).&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: undefined reference to `nrf_pwr_mgmt_shutdown'</title><link>https://devzone.nordicsemi.com/thread/266105?ContentTypeID=1</link><pubDate>Tue, 25 Aug 2020 07:32:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a204c7a7-9ac3-4c61-a3d6-ca3cb92d7195</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;&lt;br /&gt;Could you tell me some more about your development setup: Which IDE are you using, are you building with armgcc directly, or perhaps Segger Embedded Studios?&lt;br /&gt;Could you also verify for me the path you have supplied, and how you have added it to the makefile?&lt;br /&gt;In the case that you are using Segger Embedded Studios, could you detail for me how you have added the path to your project?&lt;br /&gt;&lt;br /&gt;Looking forward to resolving this issue together,&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>