From 7553aa973f352d48abbf5f8fc67530a5a64c108d Mon Sep 17 00:00:00 2001 From: Thomas Tsou Date: Fri, 8 Nov 2013 12:50:03 -0500 Subject: Transceiver52M: Set variable thread priority levels The transceiver and underlying device drivers are threaded. use the following priority levels. 0.50 - UHD driver internal threads 0.45 - Receive device drive thread 0.44 - Transmit device drive thread 0.43 - UHD asynchronous update thread (error reporting) 0.42 - Receive burst processing thread(s) Signed-off-by: Thomas Tsou --- Transceiver52M/Transceiver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Transceiver52M/Transceiver.h') diff --git a/Transceiver52M/Transceiver.h b/Transceiver52M/Transceiver.h index 4356ef2..d1a6ec9 100644 --- a/Transceiver52M/Transceiver.h +++ b/Transceiver52M/Transceiver.h @@ -235,7 +235,7 @@ protected: void reset(); /** set priority on current thread */ - void setPriority() { mRadioInterface->setPriority(); } + void setPriority(float prio = 0.5) { mRadioInterface->setPriority(prio); } }; -- cgit v1.2.3