mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-06-22 10:53:27 +00:00
2
Running OpenWebRX on the Odroid C2
András Retzler edited this page 2018-11-25 21:57:02 +01:00
Andy Pevy, G4XYW informed me that the following changes were required to make OpenWebRX work on his Odroid C2:
In the Makefile:
PARAMS_NEON = -march=armv8-a+fp+simd+crc+nocrypto -mtune=cortex-a53 -fexpensive-optimizations -funsafe-math-optimizations -Wformat=0
If netcat is not installed or not available, in csdr.py, from:
any_chain_base="nc -v 127.0.0.1 {nc_port} | "
...to:
any_chain_base="ncat -v 127.0.0.1 {nc_port} | "