Skip to content

Commit

Permalink
Merge pull request #154 from Guenael/make-opts
Browse files Browse the repository at this point in the history
fix(buil): Makefile extra options for Pi
  • Loading branch information
Guenael authored Dec 10, 2024
2 parents 233505b + 4e6e224 commit f4ee5cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ LIBS = -lusb-1.0 -lrtlsdr -lpthread -lfftw3f -lcurl -lm
ifeq ($(findstring armv6, $(shell uname -m)), armv6)
# Broadcom BCM2835 SoC with 700 MHz 32-bit ARM 1176JZF-S (ARMv6 arch)
# Used in Raspberry Pi1 (A,A+,B,B+), Pi-Zero, Pi-Zero W, Pi-Compute-Module1
EXTRA_OPTS = -DRPI1
EXTRA_OPTS = -DRPI1 --target=arm-linux-gnueabihf -mcpu=arm1176jzf-s -mfloat-abi=hard
endif
ifeq ($(findstring armv7, $(shell uname -m)), armv7)
# Broadcom BCM2836 SoC with 900 MHz 32-bit quad-core ARM Cortex-A7 (ARMv7 arch)
# Used in Raspberry Pi 2 Model B

# Broadcom BCM2837 SoC with 1.2 GHz 64-bit quad-core ARM Cortex-A53 (ARMv8 arch)
# Used in Raspberry Pi 3 Model B +later models of the Raspberry Pi 2 Model B,
# and Pi-Compute-Module3.
Expand Down
4 changes: 2 additions & 2 deletions rtlsdr_wsprd.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ struct decoder_results dec_results[50];


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


/* Callback for each buffer received */
Expand Down

0 comments on commit f4ee5cd

Please sign in to comment.