Skip to content

Commit a2b2aaa

Browse files
committed
Rename function LoRaMacHandleJoinRequest
#606
1 parent ba41ff8 commit a2b2aaa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mac/LoRaMac.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ static uint8_t LoRaMacCheckForBeaconAcquisition( void );
751751
/*!
752752
* \brief This function handles join request
753753
*/
754-
static void LoRaMacHandleJoinRequest( void );
754+
static void LoRaMacHandleMlmeRequest( void );
755755

756756
/*!
757757
* \brief This function handles mcps request
@@ -1597,7 +1597,7 @@ static void LoRaMacHandleMcpsRequest( void )
15971597
}
15981598
}
15991599

1600-
static void LoRaMacHandleJoinRequest( void )
1600+
static void LoRaMacHandleMlmeRequest( void )
16011601
{
16021602
// Handle join request
16031603
if( MacCtx.MacFlags.Bits.MlmeReq == 1 )
@@ -1664,7 +1664,7 @@ void LoRaMacProcess( void )
16641664

16651665
if( noTx == 0x00 )
16661666
{
1667-
LoRaMacHandleJoinRequest( );
1667+
LoRaMacHandleMlmeRequest( );
16681668
LoRaMacHandleMcpsRequest( );
16691669
}
16701670
LoRaMacHandleRequestEvents( );

0 commit comments

Comments
 (0)