You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need sweep in cycle (to sweep different frequencies)
Both variants:
a) while true; do hackrf_sweep -1 -f 2400:2500; done > out 2>&1
b) c code when I do hackrf_start_rx_sweep and hackrf_stop_rx
I debugged this a little bit. It happens that we cannot extract frequency in rx_callback, so the callback is called, but some trash is going inside buffer. if (ubuf[0] == 0x7F && ubuf[1] == 0x7F) { I mean a condition is wrong, so we cannot extract frequency.
What are the steps to reproduce this?
while true; do hackrf_sweep -1 -f 2400:2500; done > out 2>&1
My software see below.
You guys had some similar problems here...
But:
I see in my hackrf version (from github) I have all these fixes (checked not just date but lines from commits).... That's why I create a new one.
Can you provide any logs? (output, errors, etc.)
egm@raspberrypi:~/ext_lib/hackrf/hackrf/host/build $ hackrf_info
hackrf_info version: git-4b31fd91*
libhackrf version: git-4b31fd91* (0.8)
Found HackRF
Index: 0
Serial number: 0000000000000000f75461dc2c9092c3
Board ID Number: 4 (HackRF One)
Firmware Version: 2023.01.1 (API:1.07)
Part ID Number: 0xa000cb3c 0x00614758
Hardware Revision: r9
Hardware does not appear to have been manufactured by Great Scott Gadgets.
Hardware supported by installed firmware:
HackRF One
egm@raspberrypi:~/ext_lib/hackrf/hackrf/host/build $ ^C
egm@raspberrypi:~/ext_lib/hackrf/hackrf/host/build $ uname -a
Linux raspberrypi 6.1.21-v7+ #1642 SMP Mon Apr 3 17:20:52 BST 2023 armv7l GNU/Linux
egm@raspberrypi:~/ext_lib/hackrf/hackrf/host/build $
The text was updated successfully, but these errors were encountered:
Thanks for the report. As you note, this does look similar to some past issues, but you're running the latest code so there must still be something else going wrong.
What type of issue is this?
permanent - occurring repeatedly
What issue are you facing?
I need sweep in cycle (to sweep different frequencies)
Both variants:
a)
while true; do hackrf_sweep -1 -f 2400:2500; done > out 2>&1
b) c code when I do
hackrf_start_rx_sweep
andhackrf_stop_rx
lead to no sweeping.
for (a)
I debugged this a little bit. It happens that we cannot extract frequency in rx_callback, so the callback is called, but some trash is going inside buffer.
if (ubuf[0] == 0x7F && ubuf[1] == 0x7F) {
I mean a condition is wrong, so we cannot extract frequency.What are the steps to reproduce this?
while true; do hackrf_sweep -1 -f 2400:2500; done > out 2>&1
My software see below.
You guys had some similar problems here...
But:
I see in my hackrf version (from github) I have all these fixes (checked not just date but lines from commits).... That's why I create a new one.
Can you provide any logs? (output, errors, etc.)
The text was updated successfully, but these errors were encountered: