Commit 04f2ec23 authored by Laurent Thomas's avatar Laurent Thomas

merge develop, documentation fix

parent 873e4261
...@@ -126,7 +126,7 @@ void tx_func(void *param) { ...@@ -126,7 +126,7 @@ void tx_func(void *param) {
syncMsg->slot_tx = slot_tx; syncMsg->slot_tx = slot_tx;
syncMsg->timestamp_tx = info->timestamp_tx; syncMsg->timestamp_tx = info->timestamp_tx;
syncMsg->ru = gNB->RU_list[0]; syncMsg->ru = gNB->RU_list[0];
res->key = slot_tx; res->key = 1000+slot_tx;
pushTpool(gNB->threadPool, res); pushTpool(gNB->threadPool, res);
} }
...@@ -275,7 +275,7 @@ void rx_func(void *param) { ...@@ -275,7 +275,7 @@ void rx_func(void *param) {
syncMsg->frame_tx = frame_tx; syncMsg->frame_tx = frame_tx;
syncMsg->slot_tx = slot_tx; syncMsg->slot_tx = slot_tx;
syncMsg->timestamp_tx = info->timestamp_tx; syncMsg->timestamp_tx = info->timestamp_tx;
res->key = slot_tx; res->key = 2000+slot_tx;
pushTpool(gNB->threadPool, res); pushTpool(gNB->threadPool, res);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment