This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

nRF52840 DONGLE as nRF Sniffer

Hi,

I am very happy that we will be able to use the nRF52840 DONGLE as a sniffer with the new update. I thank to Nordic team. This was something I was waiting for. 

However, I am having a problem while configuring the device. I try to load both softdevice (s140 7.2.0) and the sniffer (3.1.0) hex files using nRF Connect v3.6.1 and it gives me an error;

"Some of the HEX files have overlapping data."

Is this a bug regarding the starting address of sniffer hex or am I missing something?

Thanks,

Den

Parents Reply
  • Hello Den,

    This is strange, I'm not really sure what the issue is. Can you try to set "echo" to on in nrf_sniffer_ble.bat to see how the script is invoked?

    @echo on
    rem Path to this batch file
    set NRF_SNIFFER_BLE_PATH=%~dp0
    rem Remove the "\" from the end of the path
    set NRF_SNIFFER_BLE_PATH=%NRF_SNIFFER_BLE_PATH:~0,-1%
    rem Activate virtualenv if present
    if exist "%NRF_SNIFFER_BLE_PATH%\env\Scripts\activate.bat" call "%NRF_SNIFFER_BLE_PATH%\env\Scripts\activate.bat"
    rem Find out if the launcher is installed and available
    where py > NUL 2>&1 
    if %ERRORLEVEL% EQU 0 (
        py -3 "%NRF_SNIFFER_BLE_PATH%\nrf_sniffer_ble.py" %*
    ) else (
        python "%NRF_SNIFFER_BLE_PATH%\nrf_sniffer_ble.py" %*
    )

Children
Related