Change baseband, RSSI threads to be more RAII.

This commit is contained in:
Jared Boone
2016-06-24 15:34:49 -07:00
parent 2b7e763619
commit f8a473d56b
6 changed files with 39 additions and 17 deletions

View File

@@ -50,8 +50,8 @@ public:
private:
static Thread* thread_event_loop;
BasebandThread baseband_thread;
RSSIThread rssi_thread;
BasebandThread baseband_thread { NORMALPRIO + 20 };
RSSIThread rssi_thread { NORMALPRIO + 10 };
bool is_running = true;