Skip to content

Commit f4ee5cd

Browse files
authored
Merge pull request #154 from Guenael/make-opts
fix(buil): Makefile extra options for Pi
2 parents 233505b + 4e6e224 commit f4ee5cd

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,11 @@ LIBS = -lusb-1.0 -lrtlsdr -lpthread -lfftw3f -lcurl -lm
99
ifeq ($(findstring armv6, $(shell uname -m)), armv6)
1010
# Broadcom BCM2835 SoC with 700 MHz 32-bit ARM 1176JZF-S (ARMv6 arch)
1111
# Used in Raspberry Pi1 (A,A+,B,B+), Pi-Zero, Pi-Zero W, Pi-Compute-Module1
12-
EXTRA_OPTS = -DRPI1
12+
EXTRA_OPTS = -DRPI1 --target=arm-linux-gnueabihf -mcpu=arm1176jzf-s -mfloat-abi=hard
1313
endif
1414
ifeq ($(findstring armv7, $(shell uname -m)), armv7)
1515
# Broadcom BCM2836 SoC with 900 MHz 32-bit quad-core ARM Cortex-A7 (ARMv7 arch)
1616
# Used in Raspberry Pi 2 Model B
17-
1817
# Broadcom BCM2837 SoC with 1.2 GHz 64-bit quad-core ARM Cortex-A53 (ARMv8 arch)
1918
# Used in Raspberry Pi 3 Model B +later models of the Raspberry Pi 2 Model B,
2019
# and Pi-Compute-Module3.

rtlsdr_wsprd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ struct decoder_results dec_results[50];
118118

119119

120120
/* Could be nice to update this one with the CI */
121-
const char rtlsdr_wsprd_version[] = "0.5.5";
122-
const char wsprnet_app_version[] = "rtlsdr-055"; // 10 chars max.!
121+
const char rtlsdr_wsprd_version[] = "0.5.6";
122+
const char wsprnet_app_version[] = "rtlsdr-056"; // 10 chars max.!
123123

124124

125125
/* Callback for each buffer received */

0 commit comments

Comments
 (0)