From 8996b7eaca8092a62fb9f2e659afa4533821900a Mon Sep 17 00:00:00 2001 From: joan2937 Date: Wed, 18 Oct 2017 22:25:13 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ff4b5a..e326fca 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,13 @@ A number of utility programs are provided: * the pig2vcd utility which converts notifications into the value change dump (VCD) format (useful for viewing digital waveforms with GTKWave). +## Documentation + +See http://abyz.me.uk/rpi/pigpio/ + ## Example programs -See http://abyz.co.uk/rpi/pigpio/examples.html. +See http://abyz.me.uk/rpi/pigpio/examples.html ## GPIO From b39eb25571ece2f097fc28e5307f8838afd2c07d Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Thu, 19 Oct 2017 18:36:31 +0200 Subject: [PATCH 2/2] cmake: include find_package_handle_standard_args The Findpigpio.cmake script doesn't work for me if this is missing (CMake 3.9.4 on Arch Linux ARM). --- util/Findpigpio.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/util/Findpigpio.cmake b/util/Findpigpio.cmake index 6c94ee0..eebfbfe 100644 --- a/util/Findpigpio.cmake +++ b/util/Findpigpio.cmake @@ -25,6 +25,7 @@ set(pigpio_INCLUDES ${pigpio_INCLUDE_DIR}) # Handle REQUIRED, QUIET, and version arguments # and set the _FOUND variable. +include(FindPackageHandleStandardArgs) find_package_handle_standard_args(pigpio DEFAULT_MSG pigpio_INCLUDE_DIR pigpio_LIBRARY pigpiod_if_LIBRARY pigpiod_if2_LIBRARY)