Module pipe

Source
Expand description

A pipe is a memory object that stores data organized as a FIFO.

Pipe objects can only be accessed using built-in functions that read from and write to a pipe. Pipe objects are not accessible from the host. A pipe object encapsulates the following information:

  • Packet size in bytes
  • Maximum capacity in packets
  • Information about the number of packets currently in the pipe
  • Data packets

Functionsยง

create_pipe
get_pipe_info