#include "xf_utils_hw/stream_to_axi.hpp"
template < int _BurstLen = 32, int _WAxi, int _WStrm > void streamToAxi ( ap_uint <_WAxi>* wbuf, hls::stream <ap_uint <_WStrm>>& istrm, hls::stream <bool>& e_istrm )
Write elements in burst to AXI master port.
Parameters:
| _BurstLen | length of a burst, default is 32. |
| _WAxi | width of axi port. |
| _WStrm | width of input stream. |
| wbuf | output AXI port. |
| istrm | input stream. |
| e_istrm | end flag for input stream |