Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update read me #8

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8a4df6c
add odroid-c board.
Nov 17, 2014
ce4556c
add a root makefile
mdrjr Jan 7, 2015
8430615
add postinstall file to show a message after the package is installed
mdrjr Jan 7, 2015
ea706b8
WiringPi : modified for ODROID-XU4 Shift-shield. support ODROID-C gpi…
charles-park Jul 26, 2015
84e3776
wiringPi : i2c/spi module load fix.
charles-park Aug 10, 2015
06f3dc4
Force path environmental variable before calling modprobe
Feb 24, 2016
dea9b07
wiringPi : modified for ODROID-C2 support.
charles-park Feb 25, 2016
886e2de
wiringPi : gpio check function & debug message added.
charles-park Feb 27, 2016
45c5983
Merge pull request #2 from bwall/master
charles-park Feb 29, 2016
700d3fe
wiringPi : gpio readall error fix. (ODROID-XU3/4)
charles-park Mar 8, 2016
ed5f083
wiringPi : ODROID-C2 gpio irq implement.
charles-park Apr 12, 2016
6f349b0
wiringPi : ODROID-C1 gpio sysfs irq change(aml_gpio to gpio)
charles-park Apr 14, 2016
889d259
wiringPi : gpio sysfs dir change(aml_gpio to gpio)
charles-park Apr 14, 2016
ece2e91
wiringPi : modified board id check for odroid-c2.
charles-park Jul 6, 2016
16e5cae
wiringPi : support rootless user GPIO access(/dev/gpiomem)
charles-park Jan 10, 2017
5d98c31
wiringPi : support adc file for 4.9.x kernel
bkrepo Feb 9, 2017
13cd81b
Merge pull request #4 from bkrepo/master
charles-park Feb 9, 2017
41a2985
wiringPi : digitalWriteByte func modified.(support xu3/xu4/c1/c2)
charles-park Aug 14, 2017
f98b880
wiringPi : Add gpioToPin() fuction to simplify the routine
bkrepo Nov 17, 2017
c20e581
wiringPi : Fix the wrong file descriptor reference in wiringPiISR
bkrepo Nov 17, 2017
2ab7013
Merge pull request #6 from bkrepo/master
charles-park Nov 21, 2017
b8e185f
wiringPi : change the kernel version getting method for ADC files
bkrepo Nov 27, 2017
c507109
Merge pull request #7 from bkrepo/master
charles-park Nov 27, 2017
897441f
Update read me
william-green Apr 27, 2018
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
22 changes: 22 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
clean:
make -C wiringPi clean
make -C devLib clean
make -C gpio clean
make -C examples clean
make -C examples/Gertboard clean
make -C examples/PiFace clean
make -C examples/q2w clean
make -C examples/PiGlow clean

install:
make -C wiringPi
make -C wiringPi install
make -C devLib
make -C devLib install
make -C gpio
make -C gpio install
mkdir -p /usr/share/wiringPi/examples/Gertboard
mkdir -p /usr/share/wiringPi/examples/PiFace
mkdir -p /usr/share/wiringPi/examples/PiGlow
mkdir -p /usr/share/wiringPi/examples/q2w
find examples -exec install -m 0644 -D -t /usr/share/wiringPi/examples {} \;
2 changes: 2 additions & 0 deletions README.TXT
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ accepted to Github....
Please see

http://wiringpi.com/

Documentation for installing this repo on ODROIDs is found in the ODROID wiki. Please see https://wiki.odroid.com/ and select the appropriate board model from the list.

for the official documentation, etc. and the best way to submit bug reports, etc.
is by sending an email to [email protected]
Expand Down
178 changes: 0 additions & 178 deletions devLib/piFaceOld.c

This file was deleted.

Loading