pkt_received |
Event |
Raised if a packet was received using an OUT or SETUP transaction. This interrupt is directly tied to whether the RX FIFO is empty, so it should be cleared only after handling the FIFO entry. |
pkt_sent |
Event |
Raised if a packet was sent as part of an IN transaction. This interrupt is directly tied to whether a sent packet has not been acknowledged in the in_sent register. It should be cleared only after clearing all bits in the in_sent register. |
disconnected |
Event |
Raised if VBUS is lost thus the link is disconnected. |
host_lost |
Event |
Raised if link is active but SOF was not received from host for 4.096 ms. The SOF should be every 1 ms. |
link_reset |
Event |
Raised if the link is at SE0 longer than 3 us indicating a link reset (host asserts for min 10 ms, device can react after 2.5 us). |
link_suspend |
Event |
Raised if the line has signaled J for longer than 3ms and is therefore in suspend state. |
link_resume |
Event |
Raised when the link becomes active again after being suspended. |
av_out_empty |
Event |
Raised when the Available OUT FIFO is empty and the device interface is enabled. This interrupt is directly tied to the FIFO status, so the AV FIFO must be provided a free buffer before the interrupt is cleared. If the condition is not cleared, the interrupt can re-assert. |
rx_full |
Event |
Raised when the RX FIFO is full and the device interface is enabled. This interrupt is directly tied to the FIFO status, so the RX FIFO must have an entry removed before the interrupt is cleared. If the condition is not cleared, the interrupt can re-assert. |
av_overflow |
Event |
Raised if a write was done to either the Available OUT Buffer FIFO or the Available SETUP Buffer FIFO when the FIFO was full. |
link_in_err |
Event |
Raised if a packet to an IN endpoint started to be received but was then dropped due to an error. After transmitting the IN payload, the USB device expects a valid ACK handshake packet. This error is raised if either the packet or CRC is invalid or a different token was received. |
rx_crc_err |
Event |
Raised if a CRC error occured. |
rx_pid_err |
Event |
Raised if an invalid packed identifier (PID) was received. |
rx_bitstuff_err |
Event |
Raised if an invalid bitstuffing was received. |
frame |
Event |
Raised when the USB frame number is updated with a valid SOF. |
powered |
Event |
Raised if VBUS is applied. |
link_out_err |
Event |
Raised if a packet to an OUT endpoint started to be received but was then dropped due to an error. This error is raised if the data toggle, token, packet and/or CRC are invalid, if the Available Buffer FIFO is empty or if the Received Buffer FIFO is full. |
av_setup_empty |
Event |
Raised when the Available SETUP Buffer FIFO is empty and the device interface is enabled. This interrupt is directly tied to the FIFO status, so the AV FIFO must be provided a free buffer before the interrupt is cleared. If the condition is not cleared, the interrupt can re-assert. |