Difference between revisions of "How to register my interrupt routine in Linux application ?"

From ArmadeusWiki
Jump to: navigation, search
m (GPIOlib)
m
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
{{Under_Construction}}
 +
 
== Introduction ==
 
== Introduction ==
  
 
This is a frequently asked question from people who came from microcontroler/dsp world. But under Linux applications it is not the way to do that, we have to «block» on the interrupt event.
 
This is a frequently asked question from people who came from microcontroler/dsp world. But under Linux applications it is not the way to do that, we have to «block» on the interrupt event.
  
In this article we will talk about gpio interruptions using the [[GPIOlib]] Linux driver.
+
In this article we will talk about gpio interruptions using the [[GPIOlib]] Linux driver under a C program.
  
 
   TODO
 
   TODO
  
== GPIOlib ==
+
== Links ==
  
  TODO
+
* [http://bec-systems.com/site/281/how-to-implement-an-interrupt-driven-gpio-input-in-linux how to implement an interrupt driven gpio input in linux]

Latest revision as of 09:50, 5 June 2014

Page under construction... Construction.png Informations on this page are not guaranteed !!

Introduction

This is a frequently asked question from people who came from microcontroler/dsp world. But under Linux applications it is not the way to do that, we have to «block» on the interrupt event.

In this article we will talk about gpio interruptions using the GPIOlib Linux driver under a C program.

 TODO

Links