<?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>nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/63445/nrf52840-dongle-windows-10-driver</link><description>Hi, 
 I&amp;#39;m using a nRF52840 Dongle with connectivity_4.1.1 in my workstation without problems. 
 Recently, I deploy my custom application (using the dongle) to a new Windows 10 machine and the default drivers does not allow me to use the dongle. 
 Please</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 05 May 2023 09:10:47 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/63445/nrf52840-dongle-windows-10-driver" /><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/423928?ContentTypeID=1</link><pubDate>Fri, 05 May 2023 09:10:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2b51c31a-605e-4df3-90c2-b262be3716bc</guid><dc:creator>sagarnayakm</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Thanks for the useful information.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;this is my last question Are there any other ways to send the sensor data from the nrf52832 dev kit to a Bluetooth-less desktop wirelessly.??&lt;/p&gt;
&lt;p&gt;if yes I will raise a new ticket and share the case ID.&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: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/423924?ContentTypeID=1</link><pubDate>Fri, 05 May 2023 09:04:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:639e0791-73d3-46b5-b97f-5a36f338acd2</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t think any of these questions are related to the original question from this post. I can answer this one, but for follow ups, please create a new ticket. Feel free to link to this one for background information.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Actually, the FW that is flashed on the dongle by nRF Connect for Desktop -&amp;gt; Bluetooth LE is a modified version of the SDK\examples\connectivity\ble_connectivity. This is a proprietary serialization API that windows doesn&amp;#39;t know about, so you will never be able to use it as a BLE dongle for the OS. But it is possible to use it for scripting, such as using a python application to send and receive the USB messages to start scanning, connecting and so on (the things that nRF Connect for Desktop does). However, we don&amp;#39;t recommend this for production. It is a development tool, and it should only be used for testing. If you want to test it, you can search for pc-ble-driver. There is a .c variant and a python variant. This will be the application that communicates (UART or USB) with the dongle. You will find some information on how to set up and use it on the github repository for pc-ble-driver or pc-ble-driver-py. Just note that this is not something that we officially recommend, and it is a bit difficult to use.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If there is a particular BLE peripheral that you want to connect to, I suggest you rather write an application for the nRF that will scan for and connect to that particular device. Then you can enable notifications on whatever characteristic you need, and then forward that data to the UART/USB. Then you would need an application (python, for example) running on your computer that takes the data from the COM port, and saves it in a txt file, or prints it to a log, or whatever you want to do with it.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/423881?ContentTypeID=1</link><pubDate>Fri, 05 May 2023 04:31:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ca7aef3c-83ec-4467-ae4b-5caa29c16074</guid><dc:creator>sagarnayakm</dc:creator><description>[quote userid="26071" url="~/f/nordic-q-a/63445/nrf52840-dongle-windows-10-driver/423804"]It is not possible to use the nRF52840 dongle as a generic Bluetooth Dongle in Windows. Note that the nRF52840 only has Bluetooth Low Energy, and not Bluetooth Classic (what most audio over Bluetooth uses). Because it is lacking this, Windows will not accept it as a Bluetooth Dongle.[/quote]
&lt;p&gt;So, you mean we need to use the nrf connect desktop application and Bluetooth low energy app to scan the peripheral devices right.? if so can we use the Peripheral to central example directly to connect the peripheral device? i tried ble_app_blinky and ble_app_blinky_c examples for LBS so I am sending button state data from ble_app_blinky(peripheral) to ble_app_blinky_c(Central) it&amp;#39;s working fine.&lt;/p&gt;
&lt;p&gt;And now I wanted to do for the nrf52832 dev kit to the nrf52840 dongle, yes as of now I can use the ble_app_blinky code for the peripheral to send the button state data to the nrf52840 dongle. but here when i try to flash the dongle from nrf connect desktop app it asks for the flashing, I gave yes and flashed the dongle. so now i want the source file of it because I example I have is usbd_cdc_acm which can send/receive the data. but it didn&amp;#39;t act as a dongle like scanning the peripheral devices.&lt;/p&gt;
&lt;p&gt;so please give me the source files of it or tell me if any comfortable examples are available in SDK.&amp;nbsp;&lt;/p&gt;
[quote userid="26071" url="~/f/nordic-q-a/63445/nrf52840-dongle-windows-10-driver/423804"]Even if you have a normal Bluetooth Dongle, it will not out of the box dump that information into a notepad (I assume you mean a .txt document). You would have to write a desktop application that does this.&amp;nbsp;[/quote]
&lt;p&gt;ok, I got it, if it&amp;#39;s possible to send the data to the terminal it&amp;#39;s enough.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; Thank You.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/423804?ContentTypeID=1</link><pubDate>Thu, 04 May 2023 13:17:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:64aafb63-a00e-44b3-84ca-29fe9d4370bb</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Karl is out of office this week, so I will handle your question.&amp;nbsp;&lt;/p&gt;
[quote user="sagarnayakm"]I have already raised a query and there is no proper response.[/quote]
&lt;p&gt;I couldn&amp;#39;t find your ticket. Do you have a link?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I understand what you want to do, but I have to disappoint you. It is not possible to use the nRF52840 dongle as a generic Bluetooth Dongle in Windows. Note that the nRF52840 only has Bluetooth Low Energy, and not Bluetooth Classic (what most audio over Bluetooth uses). Because it is lacking this, Windows will not accept it as a Bluetooth Dongle.&lt;/p&gt;
&lt;p&gt;I have not tested this, but it is possible to use it as a Bluetooth dongle on Linux, but it will only work with BLE devices.&lt;/p&gt;
[quote user="sagarnayakm"]and also after connecting the peripheral device how can we send that data from the peripheral device to the dongle and print it in a notepad??[/quote]
&lt;p&gt;Even if you have a normal Bluetooth Dongle, it will not out of the box dump that information into a notepad (I assume you mean a .txt document). You would have to write a desktop application that does this.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/423167?ContentTypeID=1</link><pubDate>Tue, 02 May 2023 06:17:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:302568df-1990-4014-8f8c-5845576a2c17</guid><dc:creator>sagarnayakm</dc:creator><description>&lt;p&gt;Hello Karl,&lt;/p&gt;
&lt;p&gt;I hope you doing well, actually, in my project, I want to use the nrf52840 dongle for a PC, that doesn&amp;#39;t have inbuilt Bluetooth. so I have seen a lot of reference videos for the nrf52840 dongle and they used nrf connect desktop app so after flashing some bootloader code custom dongle board enters into open boot loader mode, then in Bluetooth low energy option asks for a program flash then I gave yes for flashing. now it acts as a dongle so I can scan peripheral devices and connect them. so without using nrf connect app can we do it as an inbuilt Bluetooth and scan it as we do in Windows 10 ??. if yes how do we do that? and also after connecting the peripheral device how can we send that data from the peripheral device to the dongle and print it in a notepad??. I have already raised a query and there is no proper response. I am working on it for 2 months but I couldn&amp;#39;t complete it. please help me to resolve this.&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: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/277638?ContentTypeID=1</link><pubDate>Thu, 29 Oct 2020 14:29:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:aa6a6717-e6ce-4f61-84a3-3520256208ad</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello again Alex,&lt;/p&gt;
[quote user="GeronimoDelsys"]Thanks for getting back to me.[/quote]
&lt;p&gt;No problem at all, I am happy to help!&lt;/p&gt;
[quote user="GeronimoDelsys"]Fortunately, I was able to figure out how to install the drivers on my machine. The pc-nrfconnect-launcher repo has an exe for downloading the drivers (build/drivers/nrfconnect-driver-installer.exe). I set up my installer to run that exe automatically, and it worked well! Thanks for the help![/quote]
&lt;p&gt;I am glad to hear that you were able to resolve the issue, and that it is now functioning as expected. Great!&lt;br /&gt;&lt;br /&gt;Please do not hesitate to open a new ticket on the forum if you should encounter any issues or questions in the future.&lt;br /&gt;&lt;br /&gt;Good luck with your development!&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/277600?ContentTypeID=1</link><pubDate>Thu, 29 Oct 2020 13:06:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2dd8139d-f7dc-43e6-89a3-b64cd1bd7ca4</guid><dc:creator>GeronimoDelsys</dc:creator><description>&lt;p&gt;HI Karl,&lt;/p&gt;
&lt;p&gt;Thanks for getting back to me. I am using Windows 10, and step 4 in that link is for installing the driver with Windows 7. Fortunately, I was able to figure out how to install the drivers on my machine. The pc-nrfconnect-launcher repo has an exe for downloading the drivers (build/drivers/nrfconnect-driver-installer.exe). I set up my installer to run that exe automatically, and it worked well! Thanks for the help!&lt;/p&gt;
&lt;p&gt;-Alex&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/276860?ContentTypeID=1</link><pubDate>Mon, 26 Oct 2020 12:45:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7ac76e9a-1e42-44bf-ab07-3e269517fc94</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello Alex,&lt;br /&gt;&lt;br /&gt;Sorry for my late reply.&lt;/p&gt;
[quote user="GeronimoDelsys"]I noticed the Hu Lao&amp;#39;s very detailed inquery was not properly answered in this thread, would anyone be able to update us on how to install the CDC ACM driver on a new windows 10 machine without downloading nRF Connect?[/quote]
&lt;p&gt;Have you completed the 4th step of &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/usbd_cdc_acm_example.html"&gt;the Testing section of the USB CDC example from nRF5 SDK&lt;/a&gt;?&lt;br /&gt;It explains how to install the CDC ACM driver on a new windows machine, without downloading nRF Connect.&lt;br /&gt;&lt;br /&gt;Are you doing the exact procedure as shown by Lu Hao in the included videos? If so, I would like to mention that the driver installation clearly states that the installation failed.&lt;br /&gt;Furthermore, I can not recommend to download the master branch of the github repositories - you should&amp;nbsp;&lt;em&gt;always, exclusively&lt;/em&gt; download tagged releases.&lt;br /&gt;&lt;br /&gt;Looking forward to resolve 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><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/276030?ContentTypeID=1</link><pubDate>Tue, 20 Oct 2020 19:39:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b2a2d649-2331-44ef-b6de-76899739657c</guid><dc:creator>GeronimoDelsys</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I am having this exact issue. I need a new Windows 10 environment (without nRF Connect downloaded) to recognize the connectivity dongle as nRF Connect USB CDC ACM. Right now if I plug in the dongle to this new environment, device manager shows the dongle as Other -&amp;gt; nrf52 connectivity and nothing&amp;nbsp;on Ports (COM &amp;amp; LPT). I noticed the Hu Lao&amp;#39;s very detailed inquery was not properly answered in this thread, would anyone be able to update us on how to install the CDC ACM driver on a new windows 10 machine without downloading nRF Connect? Thank you!&lt;/p&gt;
&lt;p&gt;-Alex&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/263875?ContentTypeID=1</link><pubDate>Mon, 10 Aug 2020 14:30:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5ba017b6-d165-4400-8454-f48e45914355</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello again,&lt;br /&gt;&lt;br /&gt;I am terribly sorry for my late reply to this - I have been out of office for some time now.&lt;/p&gt;
[quote user="Hu Lao"]I tried to use the suggested driver but so far, the installation did not pass.&amp;nbsp;[/quote]
&lt;p&gt;By this, do you mean that updating the CDC ACM driver with the one supplied in SDK/examples/usb_drivers did not succeed?&lt;br /&gt;If this is correct, how did it fail?&lt;br /&gt;&lt;br /&gt;I see the issues you are experiencing in the VM&amp;#39;s, but I also notice that you are downloading the master branch from the github.&lt;br /&gt;Please always download a tagged release from the repositories, and not the master branch.&lt;br /&gt;&lt;br /&gt;I was also under the impression that you would not like to download nRF Connect, but instead only wanted to include the CDC ACM driver in the deployment procedure - have I understood this correctly?&lt;br /&gt;&lt;br /&gt;Again, I am terribly sorry for the long delay in answering.&lt;br /&gt;I look 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><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/259576?ContentTypeID=1</link><pubDate>Sun, 12 Jul 2020 08:22:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:65dc0ed8-ce17-4bc6-8372-33d4a59db771</guid><dc:creator>Hu Lao</dc:creator><description>&lt;p&gt;Hi Karl,&lt;/p&gt;
&lt;p&gt;I tried to use the suggested driver but so far, the installation did not pass.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Below two procedures:&lt;/p&gt;
&lt;p&gt;1. Install suggested driver. Error during installation&lt;/p&gt;
&lt;p&gt;2. Install nRF Connect.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The test was performed in fresh new Windows 10 device. For the testing report purposes, a virtual machine was used. In both machines (real and virtual) the procedure and results are similars.&lt;/p&gt;
&lt;p&gt;The following video shows the installation of&amp;nbsp;&lt;a href="https://github.com/NordicSemiconductor/pc-nrfconnect-launcher/tree/master/build/drivers/dfu_trigger_and_cdc_acm"&gt;the usb cdc acm driver that is used in the nRF Connect Desktop application&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/nrf-dongle-driver-win10-error.gif" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The following video shows the installation of nRF Connect&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/nrf-dongle-driver-win10-nrf-connect.gif" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;As we could see from the results,&amp;nbsp;Windows doesn&amp;#39;t have the driver used by the Dongle.&lt;/p&gt;
&lt;p&gt;Based on this procedure, please, may you clarify where the issue is?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/259536?ContentTypeID=1</link><pubDate>Fri, 10 Jul 2020 20:40:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d57524f1-7bd3-40d9-8229-bd95a0158d74</guid><dc:creator>Hu Lao</dc:creator><description>&lt;p&gt;Hi Karl,&lt;/p&gt;
&lt;p&gt;The deployment procedure (in my context) describes&amp;nbsp;how to deploy the Software Application (that is using the Dongle) to a new machine. This include any third party tools, libraries or drivers required for the application. In this case, I didn&amp;#39;t expect to have a driver installation for the USB CDC ACM device.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/258948?ContentTypeID=1</link><pubDate>Wed, 08 Jul 2020 09:00:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:71b55882-4606-4d25-b09f-47d08ddad289</guid><dc:creator>Karl Ylvisaker</dc:creator><description>[quote user="Hu Lao"]Thanks for your feedback.&amp;nbsp;[/quote][quote user="Hu Lao"]Yes, I&amp;#39;m looking for the USB CDC ACM driver you refer. Thanks for the link.[/quote]
&lt;p&gt;No problem at all, I am happy to hear that this was what you were looking for!&lt;/p&gt;
[quote user="Hu Lao"]The screenshot I shared in the previous post&amp;nbsp;come from&amp;nbsp;the workstation where the application is working. In the new machine, the driver assigned/listed&amp;nbsp;was&amp;nbsp;different.&amp;nbsp;I didn&amp;#39;t take a screenshot; I remember was a driver from Windows.[/quote]
&lt;p&gt;I understand, thank you for clarifying.&lt;/p&gt;
[quote user="Hu Lao"]In other hand, I also expected the required driver came installed by default.[/quote]
&lt;p&gt;Yes, as far as I know all windows &amp;gt; 7 computers comes with the usb cdc acm driver, strange indeed..&lt;/p&gt;
[quote user="Hu Lao"]I&amp;#39;m defining the deployment procedure and the results not match with the expectation, as you mentioned. Please, may I have if you have additional suggestions?[/quote]
&lt;p&gt;Please elaborate on how the deployment procedure does not match your expectations.&lt;br /&gt;If you would like to see the procedure for updating the windows driver, please see &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/usbd_cdc_acm_example.html"&gt;the &amp;quot;testing&amp;quot; section from the usbd cdc acm example documentation&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: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/258925?ContentTypeID=1</link><pubDate>Wed, 08 Jul 2020 07:49:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:13879e1b-3bc8-4e37-b846-e8dd94bd2fa1</guid><dc:creator>Hu Lao</dc:creator><description>&lt;p&gt;Hi Karl,&lt;/p&gt;
&lt;p&gt;Thanks for your feedback.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Yes, I&amp;#39;m looking for the USB CDC ACM driver you refer. Thanks for the link.&lt;/p&gt;
&lt;p&gt;The screenshot I shared in the previous post&amp;nbsp;come from&amp;nbsp;the workstation where the application is working. In the new machine, the driver assigned/listed&amp;nbsp;was&amp;nbsp;different.&amp;nbsp;I didn&amp;#39;t take a screenshot; I remember was a driver from Windows.&lt;/p&gt;
&lt;p&gt;In other hand, I also expected the required driver came installed by default.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m defining the deployment procedure and the results not match with the expectation, as you mentioned. Please, may I have if you have additional suggestions?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52840 Dongle Windows 10 driver</title><link>https://devzone.nordicsemi.com/thread/258794?ContentTypeID=1</link><pubDate>Tue, 07 Jul 2020 12:41:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:071b2b12-b670-46f7-829b-89300c631bf8</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;&lt;br /&gt;If I understand you correctly, you might be looking for &lt;a href="https://github.com/NordicSemiconductor/pc-nrfconnect-launcher/tree/master/build/drivers/dfu_trigger_and_cdc_acm"&gt;the usb cdc acm driver that is used in the nRF Connect Desktop application&lt;/a&gt;?&lt;br /&gt;The driver is also located in the nRF5 SDK\examples\usb_drivers, thought this is version 1.0.0.0.&lt;br /&gt;For all windows versions &amp;gt; 7 the cdc acm driver should be installed by default, and you should not need to install the driver manually.&lt;br /&gt;&lt;br /&gt;The screenshot you provided, is this from the computer in which your application is working - or from the new computer in which it is not?&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>