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

opangepi GPIO #12

Open
wants to merge 32 commits into
base: bananapro
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
3d1e4af
h3 chip gpio ok
Oct 23, 2015
7bf91dc
edit readme
Oct 23, 2015
6ff9821
fix io6 => PA6
Oct 29, 2015
7538fcb
readme
Oct 30, 2015
1e44291
Fix interrupts
Feb 17, 2016
143630f
Fix edge-setup
Feb 17, 2016
edf9ba1
Fix pull-up/pull-down
Feb 17, 2016
cb0dbc9
digitalRead() didn't work in ALT2 - mode, implement clunky workaround
Feb 18, 2016
4322c06
Dirty fix for interrupts
WereCatf Mar 14, 2016
a7ed580
Revert "Dirty fix for interrupts"
Mar 14, 2016
05efa71
wiringPiSetupGpio don't work.
nopnop2002 Mar 14, 2016
4d02d1e
Merge pull request #1 from nopnop2002/h3
Mar 16, 2016
f082528
Possible fix for a bug people have been reporting
WereCatf Mar 16, 2016
6a7ec1f
Another small change to gpio
WereCatf Mar 16, 2016
336b916
More bugfixes
WereCatf Mar 16, 2016
1d7377a
Change pin assign to Full compatible to WiringPi.
nopnop2002 Mar 26, 2016
f0ba6cc
Merge pull request #2 from nopnop2002/h3
Mar 31, 2016
db30d62
gpio i2cd don't work.
nopnop2002 Apr 1, 2016
27685a5
Merge pull request #3 from nopnop2002/h3
Apr 5, 2016
64a1318
Pin#26 don't have SPI Function
nopnop2002 Apr 5, 2016
f2949d3
Merge pull request #4 from nopnop2002/h3
Apr 7, 2016
e9cd900
Files to make deb-package for Ubuntu vivid 15.04
sercxjo Sep 24, 2016
123e158
Fix files access modes (drop unnecessary execute bits)
sercxjo Sep 24, 2016
157c079
Fix files access modes 2 (drop unnecessary execute bits)
sercxjo Sep 29, 2016
248e2b7
Full build in deb.
sercxjo Sep 30, 2016
9276cc6
Merge pull request #1 from WereCatf/h3
sercxjo Sep 30, 2016
bb25d2d
Merge pull request #6 from sercxjo/h3
Oct 20, 2016
5242c2c
change owner of active_low as well on export
blecher-at Feb 24, 2017
00200b7
Merge pull request #7 from blecher-at/h3
May 12, 2017
ffaf396
Update README.md
Jul 11, 2017
8364930
updated SPI API & impl to match current WiringPi version
savageautomate Aug 6, 2017
156bfba
Merge pull request #8 from savageautomate/h3
Aug 7, 2017
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
Prev Previous commit
Next Next commit
Another small change to gpio
  • Loading branch information
WereCatf committed Mar 16, 2016
commit 6a7ec1f7cc0f985e45d12c82839734bc83fdb8e4
2 changes: 2 additions & 0 deletions gpio/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,8 @@ void doEdge (int argc, char *argv [])
}

fprintf (fd, "none\n") ;
fclose (fd) ;
fd = fopen (fName, "w") ;
fprintf (fd, "in\n") ;
fclose (fd) ;

Expand Down