<?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>nrf52832 sniffer</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/28654/nrf52832-sniffer</link><description>I am trying to set up the sniffer on nRF52832 DK PCA10040. I am not seeing the COM port on the Wireshark interface. I can see it on the device manager. I have looked at other threads, but I am not able to resolve my issue. 
 I tried the following command</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 10 Jul 2018 11:46:11 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/28654/nrf52832-sniffer" /><item><title>RE: nrf52832 sniffer</title><link>https://devzone.nordicsemi.com/thread/139552?ContentTypeID=1</link><pubDate>Tue, 10 Jul 2018 11:46:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8c6a5fb7-59c1-4cde-97f4-811c42c574d6</guid><dc:creator>shohidur</dc:creator><description>&lt;p&gt;Hello, &lt;br /&gt;I am trying same in ubuntu, i ran the python script and did not see any error message. But still i can not see the nrf interface in wireshark. I have gone through the troubleshooting section of the user guide. But could not resolve the issue. &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 sniffer</title><link>https://devzone.nordicsemi.com/thread/129622?ContentTypeID=1</link><pubDate>Tue, 24 Apr 2018 15:31:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c3a8a2b8-9712-4675-8e99-b7b337fb7252</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Mason ,&lt;/p&gt;
&lt;p&gt;Please make sure you use &lt;strong&gt;Python version 2.7.x not v3.x.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;quot;Version 3.4 or newer&amp;quot; mentioned in the documentation is for &lt;strong&gt;pyserial&lt;/strong&gt; not &lt;strong&gt;python&lt;/strong&gt;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 sniffer</title><link>https://devzone.nordicsemi.com/thread/129417?ContentTypeID=1</link><pubDate>Mon, 23 Apr 2018 21:36:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b84efba3-28dd-43ad-a172-bef01d5d64ee</guid><dc:creator>Mason</dc:creator><description>&lt;p&gt;I have the same problem. Using python 3.6.4 via Anaconda. &lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If you change your import lines to look like the following, you&amp;#39;ll get around the issue:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="python"&gt;import os
import sys
import argparse
import re
import time
import struct
import serial
import logging
sys.path.append(&amp;#39;SnifferAPI&amp;#39;)
from SnifferAPI import Sniffer, myVersion, Logger, UART&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;From here, I&amp;#39;m having problems with print statements, seems like the documentation is incorrect when it specifies we can use python 3.4 or newer -- all the code expects python 2 style print syntax.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 sniffer</title><link>https://devzone.nordicsemi.com/thread/122486?ContentTypeID=1</link><pubDate>Thu, 01 Mar 2018 15:08:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dc167036-6657-48ea-8e9d-345ef54ef798</guid><dc:creator>ronald benvenutti</dc:creator><description>&lt;p&gt;I have the same problem, it appears as a python import problem&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 sniffer</title><link>https://devzone.nordicsemi.com/thread/113584?ContentTypeID=1</link><pubDate>Tue, 19 Dec 2017 09:36:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f7104176-b549-4c6c-a3ed-cfaa5ba3fe54</guid><dc:creator>David Edwin</dc:creator><description>&lt;p&gt;It appears that your python version is incorrect, or you have not placed all the files and folders correctly in the Wireshark extcap folder. Please follow the installation steps and the trouble shooting steps in the &lt;a href="https://www.nordicsemi.com/eng/Products/Bluetooth-low-energy/nRF-Sniffer#Downloads"&gt;nRF Sniffer user guide&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Edit:&lt;/p&gt;
&lt;p&gt;The user guide explicity mentions that you use python v2.7.x , see the required software section in the user guide.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you are seeing import issues you need to verify that the python 2.7.x is in the path so typing &amp;quot;python --version&amp;quot; will invoke the python 2.7 version.&lt;/p&gt;
&lt;p&gt;or edit the nrf_sniffer.bat (for windows users only) to call the 2.7.x version of python.&lt;/p&gt;
&lt;p&gt;If you are mixing python 3 and python 2 in your PC you will have import issues. Point the sniffer python script only at python 2.7.x&lt;/p&gt;
&lt;p&gt;Additionally ensure that you have the pyserial installed for python 2.7.x.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;C:&amp;gt;c:\Python27\Scripts\pip list
pyserial (3.1.1)
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>