dump1090编译hackrf
时间: 2023-10-29 16:05:15 浏览: 152
dump1090-win.1.10.3010.14_dump1090win_dump1090_eastixg_
5星 · 资源好评率100%
要在 HackRF 上使用 dump1090,您需要先编译它。以下是在 Ubuntu 系统上编译 dump1090-hackrf 的步骤:
1. 安装依赖项:
```
sudo apt-get install git build-essential libusb-1.0-0-dev
```
2. 克隆 dump1090-hackrf 代码库:
```
git clone https://github.com/osmocom/dump1090.git
cd dump1090
```
3. 切换到 hackrf 分支:
```
git checkout hackrf
```
4. 编译 dump1090-hackrf:
```
make
```
5. 完成后,您可以运行 dump1090-hackrf:
```
./dump1090 --interactive --net
```
请注意,如果您使用的是 Windows 操作系统,则需要在 Cygwin 或 WSL 上安装 Ubuntu 环境,并按照上述步骤进行操作。
阅读全文