Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aerospaceresearch/CalibrateSDR
what is my SDR frequency?
https://github.com/aerospaceresearch/CalibrateSDR
hacktoberfest
Last synced: 3 months ago
JSON representation
what is my SDR frequency?
- Host: GitHub
- URL: https://github.com/aerospaceresearch/CalibrateSDR
- Owner: aerospaceresearch
- License: mit
- Created: 2020-12-24T15:13:40.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-29T13:57:33.000Z (over 2 years ago)
- Last Synced: 2024-02-14T21:15:11.225Z (12 months ago)
- Topics: hacktoberfest
- Language: Python
- Homepage:
- Size: 11.8 MB
- Stars: 31
- Watchers: 23
- Forks: 19
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CalibrateSDR
what is my SDR frequency?## Troubleshooting
If running the program throws error- ```AttributeError: python: undefined symbol: rtlsdr_get_device_count```, try this:
Refer to this [issue](https://github.com/roger-/pyrtlsdr/issues/7#issuecomment-47391543). If it still persists, build [librtlsdr](https://github.com/librtlsdr/librtlsdr) from it source and make sure it's path is defined correctly.* Arch-based OS: use AUR source [rtl-sdr-librtlsdr](https://aur.archlinux.org/packages/rtl-sdr-librtlsdr-git/)
* Ubuntu/ Debiam based OS: Run ```sudo apt update && sudo apt install librtlsdr-dev```
* On Windows, it gets automatically installed while using ```pip install pyrtlsdr```Note: After installing, make sure PATH has been define accordingly, for example: ```export LD_LIBRARY_PATH="/usr/local/lib"```