Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Run Wiringpi-Ruby on the latest RPi and Raspbian Stretch #20

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/wiringpi/WiringPi
Submodule WiringPi updated 59 files
+0 −7 INSTALL
+10 −0 README.TXT
+1 −1 VERSION
+12 −1 build
+2 −2 debian-template/wiringPi/DEBIAN/control
+2 −2 devLib/Makefile
+1 −1 devLib/gertboard.c
+1 −2 devLib/piFaceOld.c
+2 −2 examples/Makefile
+2 −2 examples/PiFace/Makefile
+2 −2 examples/PiGlow/Makefile
+61 −0 examples/blink-thread.c
+61 −0 examples/blink8-drcn.c
+18 −23 examples/delayTest.c
+2 −2 examples/q2w/Makefile
+2 −2 examples/scrollPhat/Makefile
+11 −9 gpio/Makefile
+26 −35 gpio/gpio.1
+178 −42 gpio/gpio.c
+1 −1 gpio/pintest
+36 −7 gpio/readall.c
+1 −1 gpio/test.sh
+0 −1 gpio/version.h
+8 −4 newVersion
+5 −0 update
+3 −0 version.h
+20 −37 wiringPi/Makefile
+1 −1 wiringPi/ads1115.c
+237 −0 wiringPi/bmp180.c
+34 −0 wiringPi/bmp180.h
+405 −0 wiringPi/drcNet.c
+42 −0 wiringPi/drcNet.h
+146 −0 wiringPi/ds18b20.c
+34 −0 wiringPi/ds18b20.h
+150 −0 wiringPi/htu21d.c
+34 −0 wiringPi/htu21d.h
+1 −1 wiringPi/mcp3002.c
+20 −0 wiringPi/noMoreStatic
+1 −1 wiringPi/pcf8591.c
+95 −0 wiringPi/pseudoPins.c
+26 −0 wiringPi/pseudoPins.h
+252 −0 wiringPi/rht03.c
+25 −0 wiringPi/rht03.h
+41 −24 wiringPi/softPwm.c
+396 −237 wiringPi/wiringPi.c
+61 −31 wiringPi/wiringPi.h
+2 −1 wiringPi/wiringPiI2C.c
+5 −4 wiringPi/wiringPiSPI.c
+31 −19 wiringPi/wiringSerial.c
+177 −9 wiringPi/wpiExtensions.c
+100 −0 wiringPiD/Makefile
+82 −0 wiringPiD/daemonise.c
+9 −0 wiringPiD/daemonise.h
+44 −0 wiringPiD/drcNetCmd.h
+330 −0 wiringPiD/network.c
+31 −0 wiringPiD/network.h
+126 −0 wiringPiD/runRemote.c
+7 −11 wiringPiD/runRemote.h
+382 −0 wiringPiD/wiringpid.c
1 change: 1 addition & 0 deletions ext/wiringpi/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

LIBDIR = RbConfig::CONFIG['libdir']
INCLUDEDIR = RbConfig::CONFIG['includedir']
$LIBRUBYARG_SHARED += " -lrt"

$srcs = Dir.glob('WiringPi/wiringPi/*.c')
$srcs += Dir.glob('WiringPi/devLib/*.c')
Expand Down
4 changes: 2 additions & 2 deletions wiringpi.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.name = 'wiringpi'
s.version = '2.32.0'
s.license = 'GNU Lesser General Public License v3'
s.version = '2.46.0'
s.license = 'LGPL-3.0'
s.date = '2013-04-07'
s.platform= Gem::Platform::RUBY
s.summary = "Arduino wiring-like library for Raspberry Pi GPIO. Will only work on a Pi. Alpha version."
Expand Down