LimeSDR: change tx window type to TX_WINDOW_FIXED

It seems that TX_WINDOW_USRP1 is for devices that do not support tx
sync to timestamp. LimeSDR supports it. Changing to TX_WINDOW_FIXED
greatly reduces number of "dumping stale buffer" messages

Modified to match current master by Harald Welte.

Change-Id: I8de5b165ccd72a62b0f16655618e24ca740d9637
This commit is contained in:
ignasj 2017-06-13 23:37:46 +03:00 committed by Harald Welte
parent f9d996813d
commit 87ed77b937
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ bool uhd_device::parse_dev_type()
{ "X310", { X3XX, TX_WINDOW_FIXED } },
{ "USRP2", { USRP2, TX_WINDOW_FIXED } },
{ "UmTRX", { UMTRX, TX_WINDOW_FIXED } },
{ "LimeSDR", { LIMESDR, TX_WINDOW_USRP1 } },
{ "LimeSDR", { LIMESDR, TX_WINDOW_FIXED } },
};
// Compare UHD motherboard and device strings */