Browse Source

* Update to examples/Makefile

* Updated README.md
pull/157/head
Jim Parziale 3 years ago
parent
commit
5c785971e4
2 changed files with 31 additions and 20 deletions
  1. +29
    -18
      README.md
  2. +2
    -2
      examples/Makefile

+ 29
- 18
README.md View File

@@ -1,37 +1,48 @@
Note. - Unofficial WiringPi Mirror
Unofficial WiringPi Mirror
==========================
This is an unofficial mirror of WiringPi. I have made my own changes to the repository,
including updates for RaspberryPi 4. I'm not sure if the changes are complete, and I
don't guarantee that everything works. I just needed to have some things working for my Pi4.

Please do not email Gordon if you have issues, he will not be able to help.
Pull-requests are not currently accepted, since this is a mirror.

For support, comments, questions, etc please join the WiringPi Discord channel: https://discord.gg/SM4WUVG

-Nuncio

wiringPi README
===============

Please note that the official way to get wiringPi is via git from
git.drogon.net and not GitHub.
Official Unofficial WiringPi README
===================================

ie.
WiringPi (Unofficial Mirror/Fork)
=================================

git clone git://git.drogon.net/wiringPi
This is an unofficial mirror/fork of wiringPi to support ports (Python/Ruby/etc). With the
[end of official development](http://wiringpi.com/wiringpi-deprecated/), this repository
has become a mirror of the last "official" source release, plus a fork facilitating updates
to support newer hardware (primarily for use by the ports) and fix bugs.

The version of wiringPi held on GitHub by "Gadgetoid" is used to build the
wiringPython, Ruby, Perl, etc. wrappers for these other languages. This
version may lag the official Drogon release. Pull requests may not be
accepted to Github....
* The final "official" source release can be found at the
[`final_source_2.50`](https://github.com/WiringPi/WiringPi/tree/final_official_2.50) tag.
* The default `master` branch contains code that has been written since that final source
release to provide support for newer hardware.

Please see
Ports
-----

http://wiringpi.com/
wiringPi has been wrapped for multiple languages:

for the official documentation, etc. and the best way to submit bug reports, etc.
is by sending an email to projects@drogon.net
* Node - https://github.com/WiringPi/WiringPi-Node
* Perl - https://github.com/WiringPi/WiringPi-Perl
* PHP - https://github.com/WiringPi/WiringPi-PHP
* Python - https://github.com/WiringPi/WiringPi-Python
* Ruby - https://github.com/WiringPi/WiringPi-Ruby

Thanks!
Support
-------

Please do not email Gordon if you have issues, he will not be able to help.

-Gordon
Pull-requests are not currently accepted, since this is a mirror.

For support, comments, questions, etc please join the WiringPi Discord channel: https://discord.gg/SM4WUVG

+ 2
- 2
examples/Makefile View File

@@ -28,9 +28,9 @@ endif

#DEBUG = -g -O0
DEBUG = -O3
CC = gcc
CC ?= gcc
INCLUDE = -I/usr/local/include
CFLAGS = $(DEBUG) -Wall $(INCLUDE) -Winline -pipe
CFLAGS = $(DEBUG) -Wall $(INCLUDE) -Winline -pipe $(EXTRA_CFLAGS)

LDFLAGS = -L/usr/local/lib
LDLIBS = -lwiringPi -lwiringPiDev -lpthread -lm -lcrypt -lrt


Loading…
Cancel
Save