X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fphy_stub%2Fl1_bdy2.c;h=61b1f30d0b963706baa52639a0f1542aa6c3e63f;hb=e550b2091fb29289d12a5722b189acbede7862f0;hp=7a800afc72981819149791588c41b35b5d4535f3;hpb=be7e4e372cc1d6f12f7af9c6b6d09a7ecedca58c;p=o-du%2Fl2.git diff --git a/src/phy_stub/l1_bdy2.c b/src/phy_stub/l1_bdy2.c index 7a800afc7..61b1f30d0 100644 --- a/src/phy_stub/l1_bdy2.c +++ b/src/phy_stub/l1_bdy2.c @@ -9,18 +9,19 @@ void *GenerateTicks(void *arg) while(1) { sleep(1); - printf("\nTTI indication"); - /* Send TTI indication to CL */ - duSendEgtpTTIInd(); + printf("\nPHY STUB : Slot indication"); + + /* Send Slot indication indication to lower mac */ + //buildAndSendSlotIndication(); } } -void duStartTtiThread() +void duStartSlotIndicaion() { - pthread_t ttiThread; + pthread_t thread; int ret; - ret = pthread_create(&ttiThread, NULL, GenerateTicks, NULL); + ret = pthread_create(&thread, NULL, GenerateTicks, NULL); if(ret) { printf("\nUnable to create thread");