<?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>Definitive guide on measuring current using PPK2 + nRF 52833 DK</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/125955/definitive-guide-on-measuring-current-using-ppk2-nrf-52833-dk</link><description>Hi, 
 I have read the PPK2 user guide here https://docs.nordicsemi.com/bundle/ug_ppk2/page/UG/ppk/PPK_user_guide_Intro.html and the nRF 52833 DK here docs.nordicsemi.com/.../hw_measure_current.html 
 But I cannot find a definitive set up guide on how</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 04 Dec 2025 18:24:54 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/125955/definitive-guide-on-measuring-current-using-ppk2-nrf-52833-dk" /><item><title>RE: Definitive guide on measuring current using PPK2 + nRF 52833 DK</title><link>https://devzone.nordicsemi.com/thread/556279?ContentTypeID=1</link><pubDate>Thu, 04 Dec 2025 18:24:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:069dd86f-101e-4d30-b679-7a99e0182948</guid><dc:creator>Ian Daintith</dc:creator><description>&lt;p&gt;In the absence of any further reply from Swathy, I thought others may find this useful as we worked it out for ourselves.&amp;nbsp;&lt;/p&gt;
&lt;div data-olk-copy-source="MessageBody"&gt;Connect the PPK II to the DK as shown in the image:&lt;/div&gt;
&lt;p&gt;1- From P1 on the PPK II:&lt;br /&gt;&amp;nbsp; &amp;nbsp;Black &amp;rarr; GND&lt;br /&gt;&amp;nbsp; &amp;nbsp;Brown &amp;rarr; P22 (VDD_nRF &amp;ndash; the pin farthest from the USB connector)&lt;br /&gt;&amp;nbsp; &amp;nbsp;Red &amp;rarr; P22 (VDD_nRF &amp;ndash; the pin closest to the USB connector)&lt;br /&gt;2- Set SW6 to &amp;ldquo;nRF ONLY&amp;rdquo;.&lt;br /&gt;3- Leave SW9 in the middle position (VDD on-board).&lt;br /&gt;4- Leave SW10 in the off position. &lt;br /&gt;5- Power the board by connecting a USB cable.&lt;br /&gt;6-In the Power Profiler app, set the device to Ammeter mode, enable, and press Start to begin measuring current.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/shared-image-_2800_2_2900_.jpg" /&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/shared-image-_2800_1_2900_.jpg" /&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/3733.image-_2800_4_2900_.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#include &amp;lt;zephyr/kernel.h&amp;gt;
#include &amp;lt;zephyr/sys/poweroff.h&amp;gt;
#include &amp;lt;zephyr/drivers/gpio.h&amp;gt;

static const struct gpio_dt_spec led = GPIO_DT_SPEC_GET(DT_ALIAS(led0), gpios);


int main(void)
{
    int ret;
	bool led_state = true;

	if (!gpio_is_ready_dt(&amp;amp;led)) {
		return 0;
	}

	ret = gpio_pin_configure_dt(&amp;amp;led, GPIO_OUTPUT_ACTIVE);
	if (ret &amp;lt; 0) {
		return 0;
	}

    for(int i=0; i &amp;lt; 10; i++)
    {
        gpio_pin_toggle_dt(&amp;amp;led);
        led_state = !led_state;
		k_msleep(200);
    }

    gpio_pin_configure_dt(&amp;amp;led, GPIO_DISCONNECTED);



    // Minimal init only
    k_sleep(K_FOREVER);
    // or: sys_poweroff();

    return 0; 
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Definitive guide on measuring current using PPK2 + nRF 52833 DK</title><link>https://devzone.nordicsemi.com/thread/556129?ContentTypeID=1</link><pubDate>Wed, 03 Dec 2025 14:02:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:665a4b6c-e3dd-4f58-be6d-511824798928</guid><dc:creator>Ian Daintith</dc:creator><description>&lt;p&gt;Thank you Swathy,&lt;/p&gt;
&lt;p&gt;Please can you confirm SW6, SW9 and SW10 positions as these are not mentioned in any of the URLs you have provided (which I had already read) or in your reply&amp;nbsp;above.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Ian&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Definitive guide on measuring current using PPK2 + nRF 52833 DK</title><link>https://devzone.nordicsemi.com/thread/556125?ContentTypeID=1</link><pubDate>Wed, 03 Dec 2025 13:51:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:60c0f3bc-a8d1-4d40-9d45-1a990cdef2dc</guid><dc:creator>SwRa</dc:creator><description>&lt;p&gt;Hi Ian,&lt;/p&gt;
&lt;p&gt;The procedure is as follows:&lt;/p&gt;
&lt;p&gt;Cut the solder bridge SB40 as mentioned here:&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/ug_nrf52833_dk/page/UG/dk/prepare_board.html"&gt;Set up the DK&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can either use the Ampere meter mode or source meter mode to measure the current. For&amp;nbsp;Source meter mode make the following connection (Refer:&lt;a href="https://docs.nordicsemi.com/bundle/ug_ppk2/page/UG/ppk/measure_current_source_meter.html"&gt;Measuring current in Source Meter mode&lt;/a&gt;):&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1764769103085v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;And for Ampere meter mode, the connection is as follows (Refer:&lt;a href="https://docs.nordicsemi.com/bundle/ug_ppk2/page/UG/ppk/measure_current_ampere_meter.html"&gt;Measuring current in Ampere Meter mode&lt;/a&gt;):&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1764769172792v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;The board must be powered using an external power source (like usb, coin cell, etc.) when using the Ampere meter mode.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Swathy&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>