diff --git a/README.md b/README.md index ce0565d..8a3cf50 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,13 @@ to support newer hardware (primarily for use by the ports) and fix bugs. * The default `master` branch contains code that has been written since that final source release to provide support for newer hardware. +Raspberry Pi 5 Roadmap +----- + +* 2.71 Raspberry Pi 4 (Bookworm) +* 2.72 Raspberry Pi 5 sysfs support +* 2.73 Raspberry Pi 5 gpiomem support + BananaPi M2 Zero ----- diff --git a/VERSION b/VERSION index 21d5b2e..ae0a2e9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.73 +2.73 \ No newline at end of file diff --git a/version.h b/version.h index 2dec082..baffaa8 100644 --- a/version.h +++ b/version.h @@ -1,3 +1,3 @@ #define VERSION "2.73" #define VERSION_MAJOR 2 -#define VERSION_MINOR 73 +#define VERSION_MINOR 73 \ No newline at end of file diff --git a/wiringPi/wiringPi.c b/wiringPi/wiringPi.c index 23d32c0..382686d 100644 --- a/wiringPi/wiringPi.c +++ b/wiringPi/wiringPi.c @@ -583,7 +583,7 @@ int GetMaxPin() { int FailOnModel5() { if (PI_MODEL_5 == RaspberryPiModel) { return wiringPiFailure (WPI_ALMOST, "Function not supported on Raspberry Pi 5.\n" - " Unable to continue. Keep an eye of new versions at https://github.com/GrazerComputerClub/WiringPi\n") ; + " Unable to continue. Keep an eye of new versions at https://github.com/wiringpi/wiringpi\n") ; } return 0; }