Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Handling a Wireless Device ISR

...

10508971050897NetDev_ISR_Handler() is the device interrupt handler. In general, the device interrupt handler must perform the following functions:

...

a Post the address of the data area that has completed transmission to the transmit buffer de-allocation task by calling NetOS_IF_TxDeallocTaskPost() with the pointer to the data area that has completed transmission.

...

b Call NetOS_Dev_TxRdySignal() with the interface number that has just completed transmission.

...

Additionally, it is highly recommended that device driver ISR handlers be kept as short as possible to reduce the amount of interrupt latency in the system.

...

 

...