RTEMS  5.0.0
Functions
pio_it.h File Reference
#include "pio.h"

Go to the source code of this file.

Functions

void PIO_InitializeInterrupts (uint32_t dwPriority)
 
void PIO_ConfigureIt (const Pin *pPin, void(*handler)(const Pin *, void *arg), void *arg)
 
void PIO_IT_InterruptHandler (void)
 
void PioInterruptHandler (uint32_t id, Pio *pPio)
 
void PIO_CaptureHandler (void)
 The PIO_CaptureHandler must be called by the PIO Capture Interrupt Service Routine with the corresponding PIO Capture instance.
 

Detailed Description

Purpose

Configuration and handling of interrupts on PIO status changes. The API provided here have several advantages over the traditional PIO interrupt configuration approach:

However, it also has several minor drawbacks that may prevent from using it in particular applications:

Usage
  1. Initialize the PIO interrupt mechanism using PIO_InitializeInterrupts() with the desired priority (0 ... 7).
  2. Configure a status change interrupt on one or more pin(s) with PIO_ConfigureIt().
  3. Enable & disable interrupts on pins using PIO_EnableIt() and PIO_DisableIt().

Function Documentation

◆ PIO_ConfigureIt()

void PIO_ConfigureIt ( const Pin pPin,
void(*)(const Pin *, void *arg)  handler,
void *  arg 
)

Configures a PIO or a group of PIO to generate an interrupt on status change. The provided interrupt handler will be called with the triggering pin as its parameter (enabling different pin instances to share the same handler).

Parameters
pPinPointer to a Pin instance.
handlerInterrupt handler function pointer.
argPointer to interrupt handler argument