Skip to content
This repository has been archived by the owner on Jan 13, 2020. It is now read-only.

Running OpenWebRX on the Odroid C2

András Retzler edited this page Nov 25, 2018 · 2 revisions

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} | "
Clone this wiki locally