From f44ff825f6955d6531b13ed21ac44a3e17aeb192 Mon Sep 17 00:00:00 2001 From: Peter Michael Green Date: Thu, 28 Jan 2021 20:18:56 +0000 Subject: Fix detection of whether or not the system is a raspberry pi. --- pigpio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pigpio.c b/pigpio.c index 92b9bf7..7713759 100644 --- a/pigpio.c +++ b/pigpio.c @@ -13754,7 +13754,7 @@ unsigned gpioHardwareRevision(void) if ((rev & 0x800000) == 0) /* old rev code */ { - if (rev < 0x0016) /* all BCM2835 */ + if ((rev > 0) && (rev < 0x0016)) /* all BCM2835 */ { pi_ispi = 1; piCores = 1; -- cgit v1.2.3