Skip to content

Commit

Permalink
#15
Browse files Browse the repository at this point in the history
  • Loading branch information
mstroh76 committed Jan 27, 2024
1 parent f01ff41 commit 6f9b9ec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions wiringPi/wiringPi.c
Original file line number Diff line number Diff line change
Expand Up @@ -2348,6 +2348,11 @@ int wiringPiSetup (void)
// Try /dev/mem. If that fails, then
// try /dev/gpiomem. If that fails then game over.

if (PI_MODEL_5 == model) {
return wiringPiFailure (WPI_ALMOST, "wiringPiSetup: Raspberry Pi 5 not supported.\n"
" Unable to continue. Keep an eye of new versions at https://github.com/GrazerComputerClub/WiringPi\n") ;
}

if ((fd = open ("/dev/mem", O_RDWR | O_SYNC | O_CLOEXEC)) < 0)
{
if ((fd = open ("/dev/gpiomem", O_RDWR | O_SYNC | O_CLOEXEC) ) >= 0) // We're using gpiomem
Expand All @@ -2362,11 +2367,6 @@ int wiringPiSetup (void)
" Try running with sudo?\n", strerror (errno)) ;
}

if (PI_MODEL_5 == model) {
return wiringPiFailure (WPI_ALMOST, "wiringPiSetup: Raspberry Pi 5 not supported.\n"
" Unable to continue. Keep an eye of new version at https://github.com/GrazerComputerClub/WiringPi\n") ;
}

//Set the offsets into the memory interface.

GPIO_PADS = piGpioBase + 0x00100000 ;
Expand Down

0 comments on commit 6f9b9ec

Please sign in to comment.