mstroh76 hace 9 meses
padre
commit
6f9b9ecf5c
Se han modificado 1 ficheros con 5 adiciones y 5 borrados
  1. +5
    -5
      wiringPi/wiringPi.c

+ 5
- 5
wiringPi/wiringPi.c Ver fichero

@@ -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
@@ -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 ;


Cargando…
Cancelar
Guardar