Changed order of stop in srsENB to avoid PHY errors at exit

This commit is contained in:
Ismael Gomez 2017-09-26 10:52:54 +02:00
parent 38019dd77c
commit 7be56a85ea
1 changed files with 1 additions and 1 deletions

View File

@ -228,8 +228,8 @@ void enb::stop()
{
if(started)
{
mac.stop();
phy.stop();
mac.stop();
usleep(1e5);
rlc.stop();