Skip to content

Commit 2359c3d

Browse files
committed
Apply code conventions
1 parent 247dbe9 commit 2359c3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mac/LoRaMac.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1649,7 +1649,7 @@ static void OnMacStateCheckTimerEvent( void )
16491649
}
16501650
else
16511651
{
1652-
if( ( JoinRequestTrials >= MaxJoinRequestTrials ) )
1652+
if( JoinRequestTrials >= MaxJoinRequestTrials )
16531653
{
16541654
LoRaMacState &= ~LORAMAC_TX_RUNNING;
16551655
}
@@ -1665,7 +1665,7 @@ static void OnMacStateCheckTimerEvent( void )
16651665
{// Procedure for all other frames
16661666
if( ( ChannelsNbRepCounter >= LoRaMacParams.ChannelsNbRep ) || ( LoRaMacFlags.Bits.McpsInd == 1 ) )
16671667
{
1668-
if( LoRaMacFlags.Bits.McpsInd == 0)
1668+
if( LoRaMacFlags.Bits.McpsInd == 0 )
16691669
{ // Maximum repititions without downlink. Reset MacCommandsBufferIndex. Increase ADR Ack counter.
16701670
// Only process the case when the MAC did not receive a downlink.
16711671
MacCommandsBufferIndex = 0;

0 commit comments

Comments
 (0)