Fixed GPIO based address for Pi Zero-W

This commit is contained in:
Gordon Henderson 2017-03-03 15:56:24 +00:00
parent e8da87fbac
commit 96344ff712
4 changed files with 8 additions and 7 deletions

View File

@ -1 +1 @@
2.42
2.44

View File

@ -1,5 +1,5 @@
Package: wiringpi
Version: 2.42
Version: 2.44
Section: libraries
Priority: optional
Architecture: armhf

View File

@ -1,3 +1,3 @@
#define VERSION "2.42"
#define VERSION "2.44"
#define VERSION_MAJOR 2
#define VERSION_MINOR 42
#define VERSION_MINOR 44

View File

@ -2187,9 +2187,10 @@ int wiringPiSetup (void)
switch (model)
{
case PI_MODEL_A: case PI_MODEL_B:
case PI_MODEL_AP: case PI_MODEL_BP:
case PI_ALPHA: case PI_MODEL_CM: case PI_MODEL_ZERO:
case PI_MODEL_A: case PI_MODEL_B:
case PI_MODEL_AP: case PI_MODEL_BP:
case PI_ALPHA: case PI_MODEL_CM:
case PI_MODEL_ZERO: case PI_MODEL_ZERO_W:
piGpioBase = GPIO_PERI_BASE_OLD ;
break ;