Skip to content

Commit 1527edf

Browse files
committed
Fix variable name.
1 parent 3d69959 commit 1527edf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/apps/LoRaMac/classB/SAML21/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ static bool SendFrame( void )
482482

483483
if( status == LORAMAC_STATUS_DUTYCYCLE_RESTRICTED )
484484
{
485-
TimerTime_t nextTxInIn = 0;
485+
TimerTime_t nextTxIn = 0;
486486
LoRaMacQueryNextTxDelay( LORAWAN_DEFAULT_DATARATE, &nextTxIn );
487487
printf( "Next Tx in : ~%lu second(s)\r\n", ( nextTxIn / 1000 ) );
488488
}

src/apps/LoRaMac/classC/NucleoL476/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ static void JoinNetwork( void )
346346
if( status == LORAMAC_STATUS_DUTYCYCLE_RESTRICTED )
347347
{
348348
TimerTime_t nextTxIn = 0;
349-
LoRaMacQueryNextTxDelay( LORAWAN_DEFAULT_DATARATE, &nextTxInIn );
349+
LoRaMacQueryNextTxDelay( LORAWAN_DEFAULT_DATARATE, &nextTxIn );
350350
printf( "Next Tx in : ~%lu second(s)\r\n", ( nextTxIn / 1000 ) );
351351
}
352352
DeviceState = DEVICE_STATE_CYCLE;

src/apps/LoRaMac/classC/SKiM880B/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ static bool SendFrame( void )
465465
if( status == LORAMAC_STATUS_DUTYCYCLE_RESTRICTED )
466466
{
467467
TimerTime_t nextTxIn = 0;
468-
LoRaMacQueryNextTxDelay( LORAWAN_DEFAULT_DATARATE, &nextTxInIn );
468+
LoRaMacQueryNextTxDelay( LORAWAN_DEFAULT_DATARATE, &nextTxIn );
469469
printf( "Next Tx in : ~%lu second(s)\r\n", ( nextTxIn / 1000 ) );
470470
}
471471

0 commit comments

Comments
 (0)