Home
last modified time | relevance | path

Searched refs:txInfo (Results 1 – 3 of 3) sorted by relevance

/loramac-node-3.6.0-3.5.0/src/apps/LoRaMac/common/LmHandler/
DLmHandler.c501 LoRaMacTxInfo_t txInfo; in LmHandlerSend() local
513 if( LoRaMacQueryTxPossible( appData->BufferSize, &txInfo ) != LORAMAC_STATUS_OK ) in LmHandlerSend()
/loramac-node-3.6.0-3.5.0/src/mac/
DLoRaMac.h2696 LoRaMacStatus_t LoRaMacQueryTxPossible( uint8_t size, LoRaMacTxInfo_t* txInfo );
DLoRaMac.c3968 LoRaMacStatus_t LoRaMacQueryTxPossible( uint8_t size, LoRaMacTxInfo_t* txInfo ) in LoRaMacQueryTxPossible() argument
3977 if( txInfo == NULL ) in LoRaMacQueryTxPossible()
3998 txInfo->CurrentPossiblePayloadSize = GetMaxAppPayloadWithoutFOptsLength( datarate ); in LoRaMacQueryTxPossible()
4006 …if( ( LORA_MAC_COMMAND_MAX_FOPTS_LENGTH >= macCmdsSize ) && ( txInfo->CurrentPossiblePayloadSize >… in LoRaMacQueryTxPossible()
4008 txInfo->MaxPossibleApplicationDataSize = txInfo->CurrentPossiblePayloadSize - macCmdsSize; in LoRaMacQueryTxPossible()
4011 if( txInfo->CurrentPossiblePayloadSize >= ( macCmdsSize + size ) ) in LoRaMacQueryTxPossible()
4022 txInfo->MaxPossibleApplicationDataSize = 0; in LoRaMacQueryTxPossible()