# UHF/VHF SDR Radio Broadcast With this document, we are trying to reproduce what this guy did with an old LimeSDR I have laying around. * [ATSC Broadcasting using LimeSDR+GNURadio+OBS+libav | YouTube](https://www.youtube.com/watch?v=jVTWzlq_vYw) ## LimeSDR WestBridge Corruption If you're like me and you bought a LimeSDR at launch and haven't used it since 2018 and it's 2020 and beyond. You might have this problem where it doesn't work. It took me forever to find this shit, but it's this issue here regarding `WestBridge Corruption`. It turned out that the jumper was broken and not connction the FX3 Boot pins. I bridged them with some wire and everything works. After the jumper was connected I just needed to do a `LimeUtil --update` to get my old ass device current. * https://wiki.myriadrf.org/LimeSDR_Firmware_Management#Fixing_LimeSDR_USB_FX3_WestBridge_Corruption # Most Important Link that Google likes to scrub from search. * https://github.com/gnuradio/gnuradio/blob/main/gr-dtv/examples/file_atsc_tx.grc ## General Links * https://github.com/antonjan/gnuradio-grc-examples * https://github.com/smplayer-dev/smplayer/releases * https://medium.com/@rxseger/receiving-atsc-digital-television-with-an-sdr-76b03a863fea * https://wiki.gnuradio.org/index.php/File_Sink ## Windows * https://github.com/ryanvolz/radioconda * https://zadig.akeo.ie/ * https://wiki.gnuradio.org/index.php/WindowsInstall * https://libav.org/documentation/platform.html#toc-Windows * [Twilight Zone Playlist | YouTube](https://www.youtube.com/watch?v=IdD7-GfGDdI&list=PLNvfr3aPMv9cQ7CATYePMtqPro1I9k7ZE) * https://wiki.myriadrf.org/LimeSDR_Windows_Driver_Installation * https://github.com/wanjohiryan/qwantify * https://wiki.myriadrf.org/Getting_Started_with_Lime_Suite * https://github.com/pothosware/PothosSDR/wiki * https://downloads.myriadrf.org/builds/PothosSDR/ * https://www.rapidee.com/en/download * https://downloads.myriadrf.org/builds/limesuite/ ## OSX * https://github.com/pothosware/homebrew-pothos/wiki * ***If you're running M1 mac this might be useful.*** ```pothos.sh #install pothos framework, toolkits, and GUI arch -arm64 brew install pothosaudio arch -arm64 brew install pothosblocks arch -arm64 brew install pothoscomms arch -arm64 brew install pothossoapy arch -arm64 brew install pothosflow arch -arm64 brew install pothosplotters arch -arm64 brew install pothoswidgets arch -arm64 brew install pothospython #create a GUI shortcut in ~/Applications ln -sf /usr/local/opt/pothosflow/PothosFlow.app ~/Applications/PothosFlow.app #install SDR hardware support as needed arch -arm64 brew install soapyremote arch -arm64 brew install soapyaudio arch -arm64 brew install soapyrtlsdr arch -arm64 brew install soapyhackrf arch -arm64 brew install soapybladerf arch -arm64 brew install soapyairspy arch -arm64 brew install soapyairspyhf arch -arm64 brew install soapyosmo arch -arm64 brew install soapyuhd arch -arm64 brew install soapyredpitaya arch -arm64 brew install soapyiris arch -arm64 brew install limesuite arch -arm64 brew install soapyplutosdr ``` *