<?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>OTA DFU from OSX/Windows/Linux</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/29370/ota-dfu-from-osx-windows-linux</link><description>Hi, 
 With the latest SDK v 14.2 is it possible to do OTA updates to nRF52 from OSX/Windows/Linux without the use of additional DK? I understand that for iOS and Android we can use nRFConnect or nRFToolbox to update firmware over the air. I am particularly</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 12 Aug 2026 13:13:11 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/29370/ota-dfu-from-osx-windows-linux" /><item><title>RE: OTA DFU from OSX/Windows/Linux</title><link>https://devzone.nordicsemi.com/thread/570162?ContentTypeID=1</link><pubDate>Wed, 12 Aug 2026 13:13:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8b4fd7ba-ce7d-4af9-ae43-022cc9784c83</guid><dc:creator>JuP0</dc:creator><description>&lt;p&gt;For anyone finding this thread from a search: this is doable today, and it&lt;br /&gt;doesn&amp;#39;t need a second DK.&lt;br /&gt;&lt;br /&gt;We built a small CLI in Go for exactly that use case:&lt;br /&gt;&lt;a href="https://github.com/E-DEVICE/ed-nrfdfu"&gt;github.com/.../ed-nrfdfu&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It runs Nordic Secure DFU over BLE from the terminal using the host&amp;#39;s own&lt;br /&gt;Bluetooth adapter &amp;mdash; no connectivity dongle. The BLE layer goes through&lt;br /&gt;tinygo.org/x/bluetooth, which maps onto BlueZ on Linux, CoreBluetooth on&lt;br /&gt;macOS and WinRT on Windows, so the DFU protocol code above it is the same&lt;br /&gt;on all three.&lt;br /&gt;&lt;br /&gt;Being upfront about the state of it: it&amp;#39;s a proof of concept that we run&lt;br /&gt;daily on Linux/BlueZ. The macOS and Windows backends are implemented and&lt;br /&gt;build, but we haven&amp;#39;t validated them against real hardware yet &amp;mdash; so treat&lt;br /&gt;those two as untested rather than as working.&lt;br /&gt;&lt;br /&gt;One platform difference worth knowing if you go this route: CoreBluetooth&lt;br /&gt;does not expose peripheral MAC addresses, it hands you a system-generated&lt;br /&gt;UUID instead. So on macOS you would target the device by advertised name&lt;br /&gt;rather than by MAC. WinRT does expose the address, so MAC targeting should&lt;br /&gt;work on Windows &amp;mdash; untested, same caveat.&lt;br /&gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; go install github.com/E-DEVICE/ed-nrfdfu@latest&lt;br /&gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; ed-nrfdfu --mac &amp;quot;AA:BB:CC:DD:EE:FF&amp;quot; --dfuPath firmware.zip&lt;br /&gt;&amp;nbsp; &amp;nbsp; ed-nrfdfu --bleName &amp;quot;MyDevice_DFU&amp;quot; --dfuPath firmware.zip&lt;br /&gt;&lt;br /&gt;It expects the device to already be advertising in DFU/bootloader mode; it&lt;br /&gt;does not trigger the buttonless transition from application firmware.&lt;br /&gt;&lt;br /&gt;Apache 2.0. Feedback &amp;mdash; and macOS/Windows test reports &amp;mdash; very welcome.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: OTA DFU from OSX/Windows/Linux</title><link>https://devzone.nordicsemi.com/thread/351174?ContentTypeID=1</link><pubDate>Thu, 03 Feb 2022 15:18:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:38dbda23-dc0c-428d-ba16-5824cfdb49b8</guid><dc:creator>Andreas48752</dc:creator><description>&lt;p&gt;Hi! I just stumbled over this thread.&lt;/p&gt;
&lt;p&gt;Currently I am looking for a DFU OTA from .NET. So maybe there&amp;#39;s an update on this? Has anyone a code example implementing DFU protocol or any other tips?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: OTA DFU from OSX/Windows/Linux</title><link>https://devzone.nordicsemi.com/thread/284246?ContentTypeID=1</link><pubDate>Thu, 10 Dec 2020 08:33:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:337d701d-328d-4ffa-be25-132656686523</guid><dc:creator>WirelessCharging</dc:creator><description>&lt;p&gt;&lt;span&gt;Has anyone gotten this to work? I&amp;#39;m targeting the task of implementing DFU OTA from PC desktop app. Would be much appreciated if anyone has a working code project for this.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: OTA DFU from OSX/Windows/Linux</title><link>https://devzone.nordicsemi.com/thread/116830?ContentTypeID=1</link><pubDate>Thu, 11 Jan 2018 13:13:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:14f162a7-207f-4dba-bc77-e3994d5bf760</guid><dc:creator>shibshab</dc:creator><description>&lt;p&gt;I mean that the protocol is open, so given a generic BLE device, you can implement it anywhere.
Re-using the nrfutil library would be one way of doing this, then you could write a transport layer (which is a defined interface in nrfutil as far as I can remember) for the DFU protocol using whatever platform you want to support.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: OTA DFU from OSX/Windows/Linux</title><link>https://devzone.nordicsemi.com/thread/116829?ContentTypeID=1</link><pubDate>Thu, 11 Jan 2018 12:45:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e35ec8f8-cc5f-420b-b4e2-4c4158474c31</guid><dc:creator>chaitz</dc:creator><description>&lt;p&gt;Thanks @shibshab for your response. Do you mean using the nrfutil library to implement the DFU protocol?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: OTA DFU from OSX/Windows/Linux</title><link>https://devzone.nordicsemi.com/thread/116828?ContentTypeID=1</link><pubDate>Thu, 11 Jan 2018 12:41:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:aa2fb8a7-f888-4682-9f1c-b78e1268f750</guid><dc:creator>shibshab</dc:creator><description>&lt;p&gt;No, there are no tools currently available to DFU this without the use of a DK on any PC platform (windows, mac, linux).&lt;/p&gt;
&lt;p&gt;However, it is possible to implement the Nordic Secure DFU protocol on any of these platforms.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>