Skip to content

Commit

Permalink
Rename function LoRaMacHandleJoinRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
mluis1 committed Jun 7, 2019
1 parent ba41ff8 commit a2b2aaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mac/LoRaMac.c
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ static uint8_t LoRaMacCheckForBeaconAcquisition( void );
/*!
* \brief This function handles join request
*/
static void LoRaMacHandleJoinRequest( void );
static void LoRaMacHandleMlmeRequest( void );

/*!
* \brief This function handles mcps request
Expand Down Expand Up @@ -1597,7 +1597,7 @@ static void LoRaMacHandleMcpsRequest( void )
}
}

static void LoRaMacHandleJoinRequest( void )
static void LoRaMacHandleMlmeRequest( void )
{
// Handle join request
if( MacCtx.MacFlags.Bits.MlmeReq == 1 )
Expand Down Expand Up @@ -1664,7 +1664,7 @@ void LoRaMacProcess( void )

if( noTx == 0x00 )
{
LoRaMacHandleJoinRequest( );
LoRaMacHandleMlmeRequest( );
LoRaMacHandleMcpsRequest( );
}
LoRaMacHandleRequestEvents( );
Expand Down

0 comments on commit a2b2aaa

Please sign in to comment.