Skip to content

Commit

Permalink
Merge pull request #84: Fix Pi4 peripheral base address.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralph-irving committed Jan 22, 2020
1 parent 1cff80e commit c7ea0c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion minimal_gpio.c
Expand Up @@ -225,7 +225,7 @@ unsigned gpioHardwareRevision(void)
if (!piPeriphBase)
piPeriphBase = buf[8]<<24 | buf[9]<<16 | buf[10]<<8 | buf[11];

if (piPeriphBase == 0xFE00000) pi_is_2711 = 1;
if (piPeriphBase == 0xFE000000) pi_is_2711 = 1;
}
fclose(filp);
}
Expand Down
2 changes: 1 addition & 1 deletion squeezelite.h
Expand Up @@ -26,7 +26,7 @@

#define MAJOR_VERSION "1.9"
#define MINOR_VERSION "6"
#define MICRO_VERSION "1205"
#define MICRO_VERSION "1206"

#if defined(CUSTOM_VERSION)
#define VERSION "v" MAJOR_VERSION "." MINOR_VERSION "-" MICRO_VERSION STR(CUSTOM_VERSION)
Expand Down

0 comments on commit c7ea0c7

Please sign in to comment.