All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mancausoft <andreamilazzo@mancausoft.org>
To: linux-newbie@vger.kernel.org
Subject: devfs Gpio and interrupt
Date: Wed, 9 Feb 2011 15:22:30 +0100	[thread overview]
Message-ID: <20110209142230.GB10103@homer> (raw)

[-- Attachment #1: Type: text/plain, Size: 1253 bytes --]

I read gpio.txt in Documentation of kernel and try to use it.

I use:

# echo 13 > /sys/class/gpio/export
# echo in > /root/tasto1/direction 
# cat /root/tasto1/direction
in

# cat /root/tasto1/value 
1

when the button is pressed:
# cat /root/tasto1/value 
0

# cat /root/tasto1/edge 
none
# echo both > /root/tasto1/edge 

# cat /sys/kernel/debug/gpio 
[...]
 B5 gpio-13  (sysfs       ) in  hi irq-77 edge-both
[...]

# cat /proc/irq/77/spurious p
count 15
unhandled 0
last_unhandled 0 ms
cat: p: No such file or directory
Ture:~# cat /proc/irq/77/spurious 
count 15
unhandled 0
last_unhandled 0 ms


I try the follow code in a while (1):

// /root/tasto1 is a symbolic link to /sys/class/gpio/gpio13/

pfd.fd = open("/root/tasto1/value", O_RDONLY);
pfd.events = POLLPRI | POLLERR; 

//ready = poll(&pfd, 1, -1); 
ready = poll(&pfd, 1, 100000); 

lseek (pfd.fd, 0, SEEK_SET);

val = read(pfd.fd, buf, 254);
//the output are: 1, 10, 10
printf ("%d, %d, %d\n", ready, pfd.revents, pfd.events);

printf ("%d, %s\n", val, buf );

close(pfd.fd);

But it don't wait for an edge but they exit immediatly. 
Why? where is the problem?

-- 
Mancausoft - http://www.mancausoft.org/
GPG key: B53F90F2

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

             reply	other threads:[~2011-02-09 14:22 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-09 14:22 Mancausoft [this message]
2011-03-22 15:01 ` devfs Gpio and interrupt Mancausoft

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110209142230.GB10103@homer \
    --to=andreamilazzo@mancausoft.org \
    --cc=linux-newbie@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.