Forum Replies Created
- AuthorPosts
AndrewModeratorHello Joe,
Thank you for the update. The USB card sounds promising!
Regards,
Andrew
AndrewModeratorAndrew January 10, 2017 at 2:09 pm in reply to: Running Spike with Presets from Command Line //php bbp_reply_id(); ?>
Hi Jason,
Sounds like you have a cool setup.
Out of curiosity, are you aware of the fast preset loading with the Ctrl+# keys? If you save a preset (Through the ‘Preset’ file menu), you can quick load it with this shortcut. If you are opening Spike remotely, you can load the preset right after the application launches.Currently we do not have any command line functionality or the ability to programmatically control Spike, nor is there a way to start Spike with a start up preset. It has to be done through the file menu or the keyboard shortcut.
Let me know if you have additional questions.
Regards,
Andrew Montgomery
AndrewModeratorAndrew December 31, 2016 at 6:46 pm in reply to: SA124B + SPIKE – No display data //php bbp_reply_id(); ?>
Hello bayderkhani,
The Spike software can be used with all of our devices. Some quick questions.
In the lower right hand corner of the software, in the status bar, it should list the device type/serial number/firmware version. Can you let me know what is listed there?
What is the version of the Spike software you have installed? You should be able to view this in the Help->About menu.
I won’t in the office until Tuesday the 3rd to be able to address this fully.
I look forward to your reply and thank you for your patience.
Regards,
Andrew Montgomery
AndrewModeratorAndrew December 28, 2016 at 11:50 am in reply to: Unable to connect to the internet or unable to find the necessary calib. file //php bbp_reply_id(); ?>
Alexey,
Please email support at signalhound dot com as well as beau at signalhound dot com and ask for the .bin and .tep files for your serial number. You will need to place both of these files into the folder you mentioned. I believe this will solve your problem.
Regards,
A.J.
AndrewModeratorAndrew December 22, 2016 at 11:29 am in reply to: Convert bbr file to other format //php bbp_reply_id(); ?>
Hello magintd,
The IQ samples are stored in the binary file as 16 bit signed integers, interleaved (I1, Q1, I2, Q2 … etc). The 16 bit integers are scaled to +/- 32767 with an additional scaleFactor to bring them into the 0-1 range.
The proper way to recover the IQ values are
float floatReal = ((float)int16Real / 32767.0) * (1.0 / scalefactor);
float floatImag = ((float)int16Imag / 32767.0) * (1.0 / scalefactor);Where the scaleFactor is found in the XML file.
Let me know if you have additional questions.
Regards,
A.J.
AndrewModeratorHello sajdenman,
The audio demod mode does have a limiting bandwidth of about 300kHz.
You could manually measure your frequency deviation in zero-span mode using the FM plot and markers to measure the peaks and troughs. I don’t know if this would be sufficient for you.
Let me know if you have additional questions.
Regards,
A.J.
AndrewModeratorAndrew December 22, 2016 at 8:51 am in reply to: Problems with Spectrogram of the Software Spike //php bbp_reply_id(); ?>
Hello Claudio,
Thank you for posting your findings here. I have also received your email with this document.
Have you tried a resolution of 1080p yet? I have yet to be able to reproduce these issues at 1080p. I’m wondering if this is another graphical issue at the 4K display resolution.
Regards,
A.J.
AndrewModeratorAndrew December 22, 2016 at 8:47 am in reply to: Convert bbr file to other format //php bbp_reply_id(); ?>
Hello magintd,
I can clarify. The bbr file is a flat recording of sweeps only (frequency domain ‘bins’). The IQ data is not recorded in this file. The sweeps are stored as min/max arrays. If the avg detector is enabled, min/max should equal the same values. I will attach a basic bbr parser so you can see the layout and how we parse the files in our software.
If you are looking to get IQ data, then we do have another recording feature in zero-span that records IQ data. If you are looking for the ultimate flexibility, you could grab IQ data directly from the device with our APIs.
Let me know if you have additional questions.
Regards,
A.J.Attachments:
You must be logged in to view attached files.
AndrewModeratorAndrew December 20, 2016 at 1:51 pm in reply to: Possibility to add comment in the Range Table in EMC Precompliance //php bbp_reply_id(); ?>
Hi Fabrice,
Thank you very much for the feedback. I like all of your ideas! We will definitely take these ideas into consideration as we further develop our software. Thank you again.
Regards,
A.J.
AndrewModeratorAndrew December 20, 2016 at 1:34 pm in reply to: Long sweep time in zero span mode for all decimation factors //php bbp_reply_id(); ?>
Hello Fabrice,
Currently the software limits the zero-span acquisition to ~4M points. We do not currently have plans to increase the number, but there is another way you could achieve a longer sweep time. There are record/playback control panels located along the bottom of the application in zero-span mode. You could set up a 30+ second recording and then play that back in the software. Playing back the recording is very convenient as you can scroll through the IQ data and control playback rates. Even with playback through, it will still only allow you to plot 4M points at once.
I hope this helps, let me know if you have follow up questions.
Regards,
A.J.
AndrewModeratorHi Joe,
Thanks for sharing the video with us. It was a fun watch. Those were some neat Labview projects. I’ve been meaning to learn it. Good stuff.
Regards,
A.J.
AndrewModeratorYou can use either function. They both serve the same purpose, the bbGetIQ function just has additional flexibility in how much data you acquire, keeping track of data loss, data left in the queue, and control over flushing the IQ data queue. Admittedly the bbFetchRaw function is much simpler and may be easier to use in Labview.
Regards
AndrewModeratorHi Joe,
Did you get download the latest API files from the link I posted above? The bbFetchRaw function is deprecated and is not used in any of the examples I provide. The function that replaces it is the bbGetIQ function and has more flexibility.
That said, decimation is the only way to control the sample rate of the device. bbFetchRaw will always return the same amount of data per call. You do not need to call bbQueryStreamInfo more than once. bbGetIQ allows you to retrieve an arbitrary amount of samples per function call. bbFetchRaw guarantees no loss of samples assuming data retrieval keeps up with the sample rate of the device. The API will store about 3/4 of a second worth of data before data loss occurs.
This information and more can be found in the API manual at
https://signalhound.com/sigdownloads/BB60C/BB60-API-Manual.pdfRegards,
A.J.
AndrewModeratorHi Joe,
Glad you found your problem with that function.
Regarding getting IQ data from the receiver, take a look in the examples folder. There will be an example of the minimal IQ acquisition setup. This should be a good starting point. If you don’t see the examples folder, get the latest API files from this download
https://signalhound.com/download/bbsa-application-programming-interface-for-windows-3264-bit/
Video triggering occurs in the Spike software. The implementation is simply looking for the transition across a certain amplitude. (for() loop through each IQ sample). Pattern triggering is much more involved and is performed in the Spike software as well.
Regards,
A.J.
AndrewModeratorHi Joe,
Yes, this call should be functional. Spike uses this function to properly determine which device is connected to the PC. You are free to email me any example you have where you find the function not behaving as you expect. I can take a look and see if I can reproduce it.
Regards,
A.J.
AndrewModeratorAndrew December 11, 2016 at 2:55 pm in reply to: HDSDR not working with BB60C //php bbp_reply_id(); ?>
Hello Claudio,
If you are able, send me some pictures of the graphical issues you are seeing in Spike. You can email me at aj@signalhound.com. I will see if there is anything I can do to help. Also, if you have any pictures or descriptions of the zero-span issues you are having at 1MHz, include those too. I look forward to your email.
I am glad you were able to get HDSDR working.
Regards,
A.J.
AndrewModeratorAndrew December 8, 2016 at 8:54 am in reply to: SA44B measurement amplitude //php bbp_reply_id(); ?>
Hello ssw,
Did you download the API files found at this link?
https://signalhound.com/download/bbsa-application-programming-interface-for-windows-3264-bit/In this download folder you will find two examples, simple_sweep_1 and simple_sweep_2. They will show you how to open, configure, and acquire data from the SA44B. You will use the saConfigCenterSpan function to control the frequency range of a sweep, and you will use the saGetSweep functions to acquire one sweep at your desired configuration. The example files should be able to be compiled and ran.
Hopefully this is enough to get you started. Contact us at support@signalhound.com if you have additional questions.
Regards,
A.J.
AndrewModeratorHi Joe,
Thanks for the feedback. I’m currently working on a scroll bar for the symbols and a video trigger delay, which delays the measurement ‘n’ symbols after a video trigger is seen. I believe both of these will benefit your use case. Expect these next release.
Regards,
A.J.
AndrewModeratorThe 2FSK measurements are definitely geared more towards GFSK/GMSK signals with a 0.5 modulation index.
AndrewModeratorThe signal looks like an unfiltered FSK signal with 12kHz deviation and 1.2baud? Our FSK demodulation expect a deviation which is a fraction of the overall symbol rate. For example, at 1.2k baud, the maximum deviation our software could handle is ~1.2kHz. Our algorithms work at an oversample rate of 16 which is going to limit the bandwidth of your signal.
Your best options working within the limitations of our software, would be to use zero-span to visualize the data in the FM plot, or select a sample rate in the demod mode that is much higher (as you did with 50kHz) and work around the repetitive symbols.
A.J.
- AuthorPosts