Year to 2025
This commit is contained in:
@@ -282,7 +282,7 @@ Please report bugs to https://github.com/WiringPi/WiringPi/issues
|
|||||||
|
|
||||||
.SH COPYRIGHT
|
.SH COPYRIGHT
|
||||||
|
|
||||||
Copyright (c) 2012-2024 Gordon Henderson and contributors
|
Copyright (c) 2012-2025 Gordon Henderson and contributors
|
||||||
.br
|
.br
|
||||||
This is free software; see the source for copying conditions. There is NO
|
This is free software; see the source for copying conditions. There is NO
|
||||||
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* gpio.c:
|
* gpio.c:
|
||||||
* Swiss-Army-Knife, Set-UID command-line interface to the Raspberry
|
* Swiss-Army-Knife, Set-UID command-line interface to the Raspberry
|
||||||
* Pi's GPIO.
|
* Pi's GPIO.
|
||||||
* Copyright (c) 2012-2024 Gordon Henderson and contributors
|
* Copyright (c) 2012-2025 Gordon Henderson and contributors
|
||||||
***********************************************************************
|
***********************************************************************
|
||||||
* This file is part of wiringPi:
|
* This file is part of wiringPi:
|
||||||
* https://github.com/WiringPi/WiringPi/
|
* https://github.com/WiringPi/WiringPi/
|
||||||
@@ -842,7 +842,7 @@ static void doVersion (char *argv [])
|
|||||||
|
|
||||||
wiringPiVersion (&vMaj, &vMin) ;
|
wiringPiVersion (&vMaj, &vMin) ;
|
||||||
printf ("gpio version: %d.%d\n", vMaj, vMin) ;
|
printf ("gpio version: %d.%d\n", vMaj, vMin) ;
|
||||||
printf ("Copyright (c) 2012-2024 Gordon Henderson and contributors\n") ;
|
printf ("Copyright (c) 2012-2025 Gordon Henderson and contributors\n") ;
|
||||||
printf ("This is free software with ABSOLUTELY NO WARRANTY.\n") ;
|
printf ("This is free software with ABSOLUTELY NO WARRANTY.\n") ;
|
||||||
printf ("For details type: %s -warranty\n", argv [0]) ;
|
printf ("For details type: %s -warranty\n", argv [0]) ;
|
||||||
printf ("\n") ;
|
printf ("\n") ;
|
||||||
@@ -955,7 +955,7 @@ int main (int argc, char *argv [])
|
|||||||
if (strcasecmp (argv [1], "-warranty") == 0)
|
if (strcasecmp (argv [1], "-warranty") == 0)
|
||||||
{
|
{
|
||||||
printf ("gpio version: %s\n", VERSION) ;
|
printf ("gpio version: %s\n", VERSION) ;
|
||||||
printf ("Copyright (c) 2012-2024 Gordon Henderson and contributors\n") ;
|
printf ("Copyright (c) 2012-2025 Gordon Henderson and contributors\n") ;
|
||||||
printf ("\n") ;
|
printf ("\n") ;
|
||||||
printf (" This program is free software; you can redistribute it and/or modify\n") ;
|
printf (" This program is free software; you can redistribute it and/or modify\n") ;
|
||||||
printf (" it under the terms of the GNU Leser General Public License as published\n") ;
|
printf (" it under the terms of the GNU Leser General Public License as published\n") ;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ CFLAGS = -Wall
|
|||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
|
|
||||||
# Need BCM19 <-> BCM26, +PWM: BCM12 <-> BCM13, BCM18 <-> BCM17 connected (1kOhm)
|
# Need BCM19 <-> BCM26, +PWM: BCM12 <-> BCM13, BCM18 <-> BCM17 connected (1kOhm)
|
||||||
tests = wiringpi_test1_sysfs wiringpi_test2_sysfs wiringpi_test3_device_wpi wiringpi_test4_device_phys wiringpi_test5_default wiringpi_test6_isr wiringpi_test7_version wiringpi_test8_pwm wiringpi_test9_pwm
|
tests = wiringpi_test0_version wiringpi_test1_sysfs wiringpi_test2_sysfs wiringpi_test3_device_wpi wiringpi_test4_device_phys wiringpi_test5_default wiringpi_test6_isr wiringpi_test8_pwm wiringpi_test9_pwm
|
||||||
|
|
||||||
# Need XO hardware
|
# Need XO hardware
|
||||||
xotests = wiringpi_xotest_test1_spi wiringpi_i2c_test1_pcf8574 wiringpi_test8_pwm wiringpi_test9_pwm
|
xotests = wiringpi_xotest_test1_spi wiringpi_i2c_test1_pcf8574 wiringpi_test8_pwm wiringpi_test9_pwm
|
||||||
@@ -31,8 +31,8 @@ wiringpi_test5_default:
|
|||||||
wiringpi_test6_isr:
|
wiringpi_test6_isr:
|
||||||
${CC} ${CFLAGS} wiringpi_test6_isr.c -o wiringpi_test6_isr -lwiringPi
|
${CC} ${CFLAGS} wiringpi_test6_isr.c -o wiringpi_test6_isr -lwiringPi
|
||||||
|
|
||||||
wiringpi_test7_version:
|
wiringpi_test0_version:
|
||||||
${CC} ${CFLAGS} wiringpi_test7_version.c -o wiringpi_test7_version -lwiringPi
|
${CC} ${CFLAGS} wiringpi_test0_version.c -o wiringpi_test0_version -lwiringPi
|
||||||
|
|
||||||
wiringpi_test8_pwm:
|
wiringpi_test8_pwm:
|
||||||
${CC} ${CFLAGS} wiringpi_test8_pwm.c -o wiringpi_test8_pwm -lwiringPi
|
${CC} ${CFLAGS} wiringpi_test8_pwm.c -o wiringpi_test8_pwm -lwiringPi
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* wiringPi:
|
* wiringPi:
|
||||||
* Arduino look-a-like Wiring library for the Raspberry Pi
|
* Arduino look-a-like Wiring library for the Raspberry Pi
|
||||||
* Copyright (c) 2012-2024 Gordon Henderson and contributors
|
* Copyright (c) 2012-2025 Gordon Henderson and contributors
|
||||||
* Additional code for pwmSetClock by Chris Hall <chris@kchall.plus.com>
|
* Additional code for pwmSetClock by Chris Hall <chris@kchall.plus.com>
|
||||||
*
|
*
|
||||||
* Thanks to code samples from Gert Jan van Loo and the
|
* Thanks to code samples from Gert Jan van Loo and the
|
||||||
|
|||||||
Reference in New Issue
Block a user