I am following all the steps given here: nRF Sniffer for 802.15.4
but my zigbee sniffer did not show up. When i did the steps given there for ble sniffer it showed up. steps are quite similar. Could there be something wrong with code in github repo? or what i could be missing ? please help
Seems like something is wrong with the python script
nrf802154_sniffer.py
it is expecting values
NORDICSEMI_VID = 0x1915
SNIFFER_802154_PID = 0x154B
but the firmware when i flashed and ran
for port in serial.tools.list_ports.comports():
print(f"Port: {port.device}, VID: {port.vid}, PID: {port.pid}")
to check PID VID of nrf52 it showed up as
Port: COM14, VID: 4966, PID: 4177
Port: COM18, VID: 4966, PID: 4177
for the two ports that shows up in device manager for nrf52
If i manually change VID PID in py script then both shows up in Wireshark.
So is the firmware on github is wrong?