Home
last modified time | relevance | path

Searched refs:RxParams (Results 1 – 5 of 5) sorted by relevance

/loramac-node-latest/src/apps/LoRaMac/common/LmHandler/packages/
DLmhpRemoteMcastSetup.c55 … if( McSessionData[id].RxParams.Class == CLASS_B ) \
57 … DBG( "Rx Freq : %lu\n", McSessionData[id].RxParams.Params.ClassB.Frequency ); \
58 … DBG( "Rx DR : DR_%d\n", McSessionData[id].RxParams.Params.ClassB.Datarate ); \
59 … DBG( "Periodicity : %u\n", McSessionData[id].RxParams.Params.ClassB.Periodicity ); \
63 … DBG( "Rx Freq : %lu\n", McSessionData[id].RxParams.Params.ClassC.Frequency ); \
64 … DBG( "Rx DR : DR_%d\n", McSessionData[id].RxParams.Params.ClassC.Datarate ); \
197 McRxParams_t RxParams; member
356 ….RxParams.Params.ClassC = // Field not used for multicast channel setup. Must be initialized to so… in LmhpRemoteMcastSetupOnMcpsIndication()
399 McSessionData[id].RxParams.Class = CLASS_C; in LmhpRemoteMcastSetupOnMcpsIndication()
411 …McSessionData[id].RxParams.Params.ClassC.Frequency = ( mcpsIndication->Buffer[cmdIndex++] << 0 )… in LmhpRemoteMcastSetupOnMcpsIndication()
[all …]
/loramac-node-latest/src/apps/LoRaMac/common/LmHandler/
DLmHandler.c98 static LmHandlerRxParams_t RxParams = variable
763 RxParams.IsMcpsIndication = 1; in McpsIndication()
764 RxParams.Status = mcpsIndication->Status; in McpsIndication()
766 if( RxParams.Status != LORAMAC_EVENT_INFO_STATUS_OK ) in McpsIndication()
771 RxParams.Datarate = mcpsIndication->RxDatarate; in McpsIndication()
772 RxParams.Rssi = mcpsIndication->Rssi; in McpsIndication()
773 RxParams.Snr = mcpsIndication->Snr; in McpsIndication()
774 RxParams.DownlinkCounter = mcpsIndication->DownLinkCounter; in McpsIndication()
775 RxParams.RxSlot = mcpsIndication->RxSlot; in McpsIndication()
783 LmHandlerCallbacks->OnRxData( &appData, &RxParams ); in McpsIndication()
[all …]
/loramac-node-latest/src/mac/
DLoRaMacTypes.h906 McRxParams_t RxParams; member
DLoRaMacClassB.c1217 … frequency = Ctx.PingSlotCtx.NextMulticastChannel->ChannelParams.RxParams.Params.ClassB.Frequency; in LoRaMacClassBProcessMulticastSlot()
1246 …RxConfig.Datarate = Ctx.PingSlotCtx.NextMulticastChannel->ChannelParams.RxParams.Params.ClassB.Dat… in LoRaMacClassBProcessMulticastSlot()
1807 …multicastChannel->PingNb = CalcPingNb( multicastChannel->ChannelParams.RxParams.Params.ClassB.Peri… in LoRaMacClassBSetMulticastPeriodicity()
DLoRaMac.c2055 … ( Nvm.MacGroup2.MulticastChannelList[i].ChannelParams.RxParams.Class == CLASS_C ) ) in SwitchClass()
2057 …Channel.Frequency = Nvm.MacGroup2.MulticastChannelList[i].ChannelParams.RxParams.Params.ClassC.Fre… in SwitchClass()
2058 …CChannel.Datarate = Nvm.MacGroup2.MulticastChannelList[i].ChannelParams.RxParams.Params.ClassC.Dat… in SwitchClass()
5217 Nvm.MacGroup2.MulticastChannelList[groupID].ChannelParams.RxParams = *rxParams; in LoRaMacMcChannelSetupRxParams()