rxMemsize (#479)

* changing fifo header size to 16 to fix the rxr header (112) to be a power of 2 to make it more efficient and reduce packet loss

* release notes
This commit is contained in:
Dhanya Thattil
2022-06-08 12:03:13 +02:00
committed by GitHub
parent 1fb90ab98c
commit 728cb35c37
2 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,7 @@ namespace sls {
#define FILE_BUFFER_SIZE (16 * 1024 * 1024) // 16mb
// fifo
#define FIFO_HEADER_NUMBYTES (8)
#define FIFO_HEADER_NUMBYTES (16)
#define FIFO_DATASIZE_NUMBYTES (4)
#define FIFO_PADDING_NUMBYTES \
(4) // for 8 byte alignment due to sls_receiver_header structure