<?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>Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/24032/flashing-a-3rd-party-nfr52832-with-st-link-v2-on-eclise</link><description>Hello, 
 I am in a little bit of trouble here trying to flash a 3rd party module that is mounted on a custom PCB I made with the SWD pins exposed for programming. 
 I&amp;#39;ve been using it with the Arduino IDE and the st link V2 so far(Thus flashed softdevice</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sat, 16 Sep 2017 21:32:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/24032/flashing-a-3rd-party-nfr52832-with-st-link-v2-on-eclise" /><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94614?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 21:32:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f9d96e1e-8ae4-4fc5-83ae-b56e70643803</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Cannot comment on Keil, you need to find out at their local reseller. But yes, you should be able to go with GCC without limit, it just needs more effort then &amp;quot;open project and hit build button&amp;quot;. Follow the tutorials and submit question if you hit any problem. Regarding powering the target: many cheap boards like NXP LPC don&amp;#39;t drive 3V3 pin on JTAGs 10-pin connector. Simply measure it and provide external power from different PIN of your STM32 board where it gives enough power.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94613?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 21:12:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8ca50cf9-4867-4ae5-9c32-40b30a7c9240</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;I&amp;#39;ll try that but I have a few questions:
My application will probably take more than 32K that&amp;#39;s why I wanted to use eclipse.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;how much would a licence for that software cost?
2)what do you think about the fact that I cant get any voltage out of the SWD port on my STM32 disco board? is it normal?&lt;/li&gt;
&lt;/ol&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94612?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 13:39:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f4c369e-0ac0-45d2-bced-2aa9502c8c84</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;(2/2)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Now recompile the project again and it should pass (HEX binary should be produced).&lt;/li&gt;
&lt;li&gt;In the end if your STM32 dev kit really works as SEGGER J-Link it should be connectable to your machine and Keil exactly the same way as nRF52 DK so all what is explained in the Keil and BLE blinky tutorials by Nordic on this site should be applicable.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you encounter any problem, please set new question where you exactly explain what HW and SW are you using, what steps you made, what you expect to see and what happened instead. I&amp;#39;m sure you will get further support...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94611?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 13:36:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6981bb84-f7c0-4bd3-85a3-7f36f460ec13</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;I would go this way:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Installing Keil MDK5 which can work without paid license up to 32kB of app binary.&lt;/li&gt;
&lt;li&gt;Open &lt;code&gt;nRF5_SDK_14.0.0_3bcc1f7\examples\ble_peripheral\ble_app_blinky\pca10040\s132\arm5_no_packs\&lt;/code&gt; project and recompile.&lt;/li&gt;
&lt;li&gt;If all is OK then go to project settings and instead of &lt;code&gt;BOARD_PCA10040&lt;/code&gt; global define set &lt;code&gt;BOARD_CUSTOM&lt;/code&gt;. That will cause that in &lt;code&gt;nRF5_SDK_14.0.0_3bcc1f7\components\boards\boards.h&lt;/code&gt; file it will direct to your custom board layout definition.&lt;/li&gt;
&lt;li&gt;Copy &lt;code&gt;nRF5_SDK_14.0.0_3bcc1f7\components\boards\pca10040.h&lt;/code&gt; file into project space &lt;code&gt;nRF5_SDK_14.0.0_3bcc1f7\examples\ble_peripheral\ble_app_blinky\pca10040\s132\config\&lt;/code&gt; and rename it to &lt;code&gt;custom_board.h&lt;/code&gt;. Open the file and align with your actual HW set-up (I cannot help you much here, you need to know what are you using and how).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;(1/x)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94610?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 13:00:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:610e7d19-fca4-4233-b5c2-36e28deb9f31</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Yes I took a look at those pages several times and didn&amp;#39;t fin&amp;#39;d some that could help me.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94609?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 12:52:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2af8b02-ae2c-4cd0-8652-caf2c876cab3</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;That&amp;#39;s the point: most of the people practice flashing and verify HW just by using pre-compiled HWX files from SDK. You&amp;#39;ve decided to skip that by not using Nordic DK so you have some more steps to go. E.g. compilation in Keil MDK5 IDE typically works out of the box so it&amp;#39;s question if you will go by harder way (making GCC and Eclipse or any other combination work) or if you will start from there. Changing board isn&amp;#39;t so hard as you just need to change few global defines and write one or two header files from templates such as &lt;code&gt;PCA10040.h&lt;/code&gt;. The only thing which might change are LF/HF clock sources, LDO/DCDC usage and particular GPIO PIN routs. So it&amp;#39;s matter of minutes, then basic examples from SDK should work on any other HW.&lt;/p&gt;
&lt;p&gt;Did you have time to look how &lt;a href="https://devzone.nordicsemi.com/tutorials/"&gt;basic tutorials&lt;/a&gt; and &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v14.0.0/nrf51_getting_started.html?cp=4_0_0_1"&gt;SDK getting started&lt;/a&gt; work?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94608?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 12:43:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:46d4f7fc-f262-45b8-8e5b-f9e1438ffa31</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Yeah but I couldn&amp;#39;t find any programming tutorials on that topic so even if I got the flashing thing on my IDE of choice(Eclipse) I won&amp;#39;t know or understand how to even blink a certain led or read from a certain output and the examples they include with the SDK are just pre built HEX files and not source codes.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94615?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 12:38:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c5dcaf73-4e64-4e17-8b69-2b4a2e85d203</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Well I&amp;#39;m afraid the standard way is to use DK and thus having flashing and debugging sorted out thanks to SEGGER J-Link OB. All the tutorial on this page and Nordic Infocenter are suited for that set-up. If you want to use different flasher (SEGGER J-Link on STM32) and different target board layout (custom instead of nRF52 DK) then you have two more steps to solve. If your STM32 board works with SEGGER J-Link then you should be able to erase it with nrfjprog or nRFgo Studio. I would stay on that topic until succeeding. Then you can move to compiling some of nRF5 SDK v14 examples with your favorite IDE and toolchain (there are like 5 or more options) and then debugging through LED/GPIO/UART and logical analyzer + UART serial to USB cable (if you have any). Anyway if you encounter problems on that path it&amp;#39;s always 1st search for related Q&amp;amp;S and if no help found then ask new question.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94607?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 12:28:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dac798af-568a-4d77-b26d-f69106634800</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Wow that&amp;#39;s one quick replay thanks!&lt;/p&gt;
&lt;p&gt;So I know it works because I managed to flash a softdevice S132 to it from the arduino ide and run a simple code to blink the onboard led&amp;#39;s vibrator OLED display(although it has problems after rebooting for some reason...) and connected it to my phone and sending and receiving data to it with a library all that using arduino.&lt;/p&gt;
&lt;p&gt;But I figured that has issues and not compatible with everything I need like NFC and other stuff so I&amp;#39;d like to get a little deeper to pure programming that relates to that MCU so up untill now I&amp;#39;ve set the required GCC compiler set up eclipse(can build the attached blink example in the tutorial but don&amp;#39;t know how to flash it) and converted my STM32 disco board to a j link(for some reason can&amp;#39;t get 3.3V out of the SWD port don&amp;#39;t know if it&amp;#39;s normal) and not I need a guide with example on how to wire a program to blink an LED.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94606?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 12:15:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ff4d0bf3-bb49-4caf-bada-892049e18385</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;So to sum up: you have custom hardware with nRF52832 Rev1 chip and you are sure that JTAG/SWD flashing and debugging works (how?). What is then new step you need help with?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94605?ContentTypeID=1</link><pubDate>Sat, 16 Sep 2017 12:10:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:71038148-2059-4b8a-a6c5-9362ab6b8b2f</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Hi, had to revive this post as I finally have time to deal with it so what page/video series with examples do you suggest to use?
of course it has to be related to the nrf52832 and it&amp;#39;s features. I don&amp;#39;t think the DK is realy not that necessary as I&amp;#39;ve already proved that the hardware and BLE functionality on my PCB&amp;#39;s work do work!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94616?ContentTypeID=1</link><pubDate>Mon, 28 Aug 2017 05:09:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:25125f4e-940d-412d-891f-b01dcb3d05b2</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Oh yes, that disillusion coming from toy to Ferrari;) So beside need to understand little bit of ANSI C and getting used to little bit higher coding culture (like global defines and compile time switches, macros...) it&amp;#39;s just little bit of routine, you can get it in few months. Or not, if you don&amp;#39;t invest that little bi of time. There are general embedded development training courses all over the internet so you can go through these things. There are also alternatives to &amp;quot;raw&amp;quot; Nordic SDK like &lt;a href="https://www.mbed.com/en/"&gt;mbed&lt;/a&gt; which are trying to simplify the process and might remind you Arduino IDE.&lt;/p&gt;
&lt;p&gt;Back to the &lt;em&gt;&amp;quot;stuck at flash download and can&amp;#39;t find that executable file&amp;quot;&lt;/em&gt; - then it looks like wiring problem because there are pre-compiled HEX files (that&amp;#39;s usually the binary format everyone uses) in SDK so you don&amp;#39;t need to do anything to start out of the box.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94604?ContentTypeID=1</link><pubDate>Sun, 27 Aug 2017 21:38:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2b070c38-71c1-411c-a8fe-637dc8a66754</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;What ever I&amp;#39;ll just buy two of those DK&amp;#39;s but anyways following this tutorial: I still got stuck at flash download and can&amp;#39;t find that executable file. and anyways how to approach a code.&lt;/p&gt;
&lt;p&gt;When I started learning program and in particular arduino I understood that you first have to setup a pin as input(or input with internal pull up resistor) or output and then there was a function whether for setting the pin state high or low if output mode was chosen or an input function to read out the state of the pin and you didn&amp;#39;t even have to approach the datasheet of the MCU to do those things now all I see in other&amp;#39;s codes are lots of hex number and #define elements not even having a clue where they started understanding these things from and I just need to make a practical device with meaningful code playing around as little as possible.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94603?ContentTypeID=1</link><pubDate>Sun, 27 Aug 2017 21:22:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f54136f6-4f7b-408d-83b5-4e031e586970</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;So meaning you don&amp;#39;t have problem with flashing the target any more (do you? Otherwise we will set-up the donation project and once we get 40 bucks you will buy one nRF5x DK with SEGGER J-Link OB and flash it in 30 seconds by one or two lines in command line...) Are you now looking for some tutorial? Which of Nordic or 3rd party guides have you followed and where has it failed for you? I believe that Nordic moderators of this forum always suggest to open new question with new specific problem (this one being about flashing, if solved let&amp;#39;s formulate new one - as detailed as possible - and you will get support, don&amp;#39;t worry;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94602?ContentTypeID=1</link><pubDate>Sun, 27 Aug 2017 21:10:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:46424701-4c96-458a-9854-1864574e5084</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Yeah so this is still relevant.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94595?ContentTypeID=1</link><pubDate>Sun, 27 Aug 2017 21:05:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f1d49c40-e67f-4262-af95-597f10beec3e</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Sorry for not letting this post die I just found some time to mess around with it where do you suggest I start learning that pure C programming assuming I&amp;#39;m a semi pro with arduino and programming?
I just need a kick start to a video tutorial showing for to upload a blink code with that programmer to the MCU because I just don&amp;#39;t know what elements I have or still need to do that.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94599?ContentTypeID=1</link><pubDate>Thu, 03 Aug 2017 09:35:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:516e7cfa-d3e4-4d88-86d0-afe08603f32b</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Well true I&amp;#39;m new to that kind of thing migrating from Arduino.&lt;/p&gt;
&lt;p&gt;I guess I&amp;#39;ll have to see how I work out with my custom board because I don&amp;#39;t have money or time to buy two more DK&amp;#39;s(Sins I have NFC involved if my project.)&lt;/p&gt;
&lt;p&gt;Anyway&amp;#39;s thank you very much that&amp;#39;s been very helpful will grand the two answers at the top once confirmed to be working.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94598?ContentTypeID=1</link><pubDate>Thu, 03 Aug 2017 09:27:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e092be0e-1bb7-446f-8e69-6411a3cc7c8f</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Also Soft Device isn&amp;#39;t any kind of bootloader, it&amp;#39;s simply BLE stack implementing certain parts of BT SIG specification on nRF5x HW. Soft Device itself does nothing, you need to build your application FW on top of its API, compile and link it properly for given start address (specific for each SD version) and load it to the chip. Only then something can run (but it will be mainly your FW code which will &amp;quot;boot&amp;quot; the chip and say if and when and how stack will be initialized).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94597?ContentTypeID=1</link><pubDate>Thu, 03 Aug 2017 09:25:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7cbcb0d1-a17c-4e7a-9bc3-e7401ad65f95</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Ooops, sorry but it would get a book to answer all these I&amp;#39;m afraid. If you are new to pure C development under GCC (where Makefiles and LD scripts are used to build and link the binary) you will need to find some general tutorials to this techno, there are many of them on the internet. Once you are fine with that you could approach nRF5 SDK. I would highly suggest to start with the latest release (v13.1.0) and nRF52 DK (PCA10040) board and just simply run few pre-compiled examples, then build them yourself and run again. Only then I would go to custom board (there are few rather simple steps how to &amp;quot;derive&amp;quot; header files for your custom board) and custom code. Sure, you can skip these steps but I cannot help you with that, sorry.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94596?ContentTypeID=1</link><pubDate>Thu, 03 Aug 2017 09:16:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1e6250e7-1fa4-4374-9bff-74e4aa870f3e</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Yeah I&amp;#39;ve done just that. Is it suppose to work like seggers J link now?&lt;/p&gt;
&lt;p&gt;Also a few thing I wanted to sort out for me but I don&amp;#39;t think it&amp;#39;s appropriate to post a whole question topic what is makefile for compilers?
and when I want to upload an example from my SDK 11.0 to my 3rd party module which board folder to I head up to(for example PCA10040)?
Can you get a visual C++ code from those examples? all I can see there is a makefile and .ld file&lt;/p&gt;
&lt;p&gt;What is soft device? I have the S132 flashed on my board I assume it&amp;#39;s some kind of bootloader for bluetooth could you make the bluetooth peripheral and central work without it?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94601?ContentTypeID=1</link><pubDate>Thu, 03 Aug 2017 01:13:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4568a8dd-c976-40f2-88bc-57cdc95f51c6</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Yes I&amp;#39;ve used this exact dev kit as ST-Link with ST software to flash external STM32L0 targets. Also &lt;a href="https://www.segger.com/products/debug-probes/j-link/models/other-j-links/st-link-on-board/#tab-3952-3"&gt;according to SEGGER web page it can be converted to J-Link OB&lt;/a&gt; but I&amp;#39;ve never tried that so cannot confirm.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94600?ContentTypeID=1</link><pubDate>Thu, 03 Aug 2017 00:40:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6147437a-ed4f-4323-919b-bf73d66ca90e</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Well thank you very much I&amp;#39;ll take a look at it tomorrow.
Do you think this:
&lt;a href="https://www.youtube.com/watch?v=xPacVe_rYmg"&gt;www.youtube.com/watch&lt;/a&gt;
STM32L053 discovery board can work as an ST LINK? (Can&amp;#39;t physically brake it up)
from what I understand the ST LINK is different from the ST LINK V2 thus can be converted to a J link unlike the ST LINK V2&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94593?ContentTypeID=1</link><pubDate>Thu, 03 Aug 2017 00:24:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5f56c331-196c-48ae-b954-26f16b1ff3eb</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;No I don&amp;#39;t, but &lt;a href="http://embeddedsoftdev.blogspot.cz/p/ehal-nrf51.html"&gt;here is tutorial how to set-up OpenOCD and Eclipse for nRF51/52&lt;/a&gt;. Sure, it&amp;#39;s not ST-Link but combining these two tutorials should help.&lt;/p&gt;
&lt;p&gt;Also to your complain about different target: difference between STM32xxx and nRF52832 in OpenOCD is just different name of target (which leads to usage of different config/exec files) but all the rest will be the same, it should be basically 95% applicable.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94592?ContentTypeID=1</link><pubDate>Thu, 03 Aug 2017 00:11:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:890b599f-facc-4812-bc94-98ed4e599b52</guid><dc:creator>MikeLemon</dc:creator><description>&lt;p&gt;Well that kinda helps understand how simple it may be if such an option is available but this tutorial is for the spark core STM32F10x chip and I need it for nrf52832.
Maybe you have such a useful thing for the nrf52832?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flashing a 3rd party NFR52832 with ST link V2 on Eclise?</title><link>https://devzone.nordicsemi.com/thread/94594?ContentTypeID=1</link><pubDate>Wed, 02 Aug 2017 21:36:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0412dbc7-19fd-4cf7-a1aa-81dc3d9f20d3</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;ST-Link isn&amp;#39;t supported by Nordic tools out of the box but i works with OpenOCD which can be set-up with Eclipse. &lt;a href="https://community.particle.io/t/tutorial-using-eclipse-st-link-v2-openocd-to-debug/10042"&gt;Here is one of many guides from the internet&lt;/a&gt;...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>