I have designed a receiver+FSK demodulator with an osmocom source and it works as it should (sometimes - as I'm finding the results to be somewhat incoherent, but I suspect that might be the transmitter that is at fault). Anyway sometimes the demodulated signal using the quad demod block isn't quite what I expect. With other SDR softwares I can usually change the bandwidth and get more appropriate results. With gnuradio, I find that changing the bandwidth field of the osmocom source block does nothing so I was wondering how does one actually change the bandwidth? And what is that field for if it has no effect? Thank you in advance
gnuradio: How to change the bandwidth of a source?
715 Views Asked by SomeEngineer100 At
1
There are 1 best solutions below
Related Questions in SIGNALS
- FFT Filtering of signal
- VHDL, concurrent signal assignment wrong on FPGA but right in Modelsim
- How to config Ctrl+u to send signal SIGUSR1 from console
- Forwarding signals in bash script which is submitted on the cluster
- Modify Control C Command Signal to Allow Input
- Get Exact Frequency From Digital Signal
- Messing with signals, pipes and forks in C
- Conceptual Questions About Processes and Signals
- starting a new process group from bash script
- How to get the NAME OF an INSTANCE in node.js
- Wait for signal to start generating data from another process in python
- pthreads SIGEV_THREAD and async-safe function calls
- GenerateConsoleCtrlEvent crashes when child process is cmd
- What does signal(SIGPIPE, SIG_IGN); do?
- Synchronizing processes with semaphores and signals in C
Related Questions in BANDWIDTH
- How to send raw data using socket.io
- check user connection's bandwidth in android mobile app at runtime
- Android - How to measure bandwidth quality within local network with just one phone
- how opus adapts to variable bandwidth?
- How to set up a server system if all you want is on demand "Burst" Bandwidth a few times a year?
- WAMP: how can i measure the bandwidth usage?
- How do I saturate my upload and download available bandwidth?
- Meaning of iperf TCP bandwidth of 24 Gbps on a Gigabit ethernet controller
- CSS media queries: one file vs. separate files and impact on loading speed
- Capacities on Load-balancer & Web Servers? Bandwidth + Performance
- jquery not loading fully before page loads
- The Default Link Bandwidth in Mininet
- Bandwidth shaping for an ipset using qdisc and tc
- ffmpeg: how to reduce CPU and bandwidth usage when grabbing still frames from live video stream?
- NGINX logs awk find bandwidth by IP address
Related Questions in GNURADIO
- gnuradio add code to file_sink
- Add a vertical scrollbar to a wxFrame accross multiple wxPanels
- how do I write my output to a file using file sink to analyze the output data?
- Gnuradio,OOT: correcting send() for tagged stream block?
- Plot freezing because of fast input stream to a GNU Radio block
- NRZ/PM demodulation for an old satellite in GNU Radio
- How to transmit data using GFSK modulation?
- GNU Radio--raw data from uhd_fft.py
- How to install specific gnuradio version using PyBombs?
- Error RIME Address
- Python PyGILState_{Ensure/Release} causes segfault while returning to C++ from Python code
- Is there any way to keep track of signal changes in GNU Radio?
- GNU Radio File Format for the recorded samples
- Swap out GR processing blocks on the fly?
- How to resolve the missing python gsm module while executing airprobe
Related Questions in RTL-SDR
- Store data in ( .wav) format from RTL-SDR device using c#
- Python: IMPORT ADI in Intellij
- Gnuplot: line 0: no previous plot
- rtl_433 command output will not pipe to php script
- Issues with QPSK modulation & Demodulation
- Gnuplot: plot not updated
- Problems during the installation of rtl-sdr drivers in linux
- fatal error: libusb/libusb.h: No such file or directory librtlsdr install for GNU radio
- Adalm Pluto works on Ubuntu but NOT on Ubuntu Server 20.04 LTS
- Parse GMS Packet with GoPacket
- ubuntu - GNU-RADIO - cmake could not find MPIR
- gnuradio: How to change the bandwidth of a source?
- pyrtlsdr installation Windows 10
- How to normalize amplitude differeces within the 433Mhz signal burst in GNU Radio Companion?
- Airspy and RTLSDR on same Raspberry pi4 with USB SSD - I/O Error
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The bandwidth field of the Osmocom source is used to control an adjustable bandpass filter built into the receiver hardware, when one exists, as opposed to one which is fixed or only adjusts to the requested sample rate.
Probably what you are seeing in other software is the channel filter bandwidth, which is a software filter and usually much narrower than the hardware filter (particularly in SDR receiver software which displays a waterfall simultaneously with demodulation one signal within it).
The purpose of the channel filter is to fit the bandwidth of the signal you want to receive, so that it rejects as much out-of-band noise as possible while not discarding any of the actual signal. If you don't have one, add one. If you do have one, its bandwidth or cutoff frequency is the parameter you're looking to change.