Skip to content

Commit 6316d94

Browse files
author
Daniel Jäckle
committed
Spell check
1 parent f8de70c commit 6316d94

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/mac/LoRaMac.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ LoRaMacStatus_t SetTxContinuousWave( uint16_t timeout );
591591
*
592592
* \param [IN] timeout Time in seconds while the radio is kept in continuous wave mode
593593
* \param [IN] frequency RF frequency to be set.
594-
* \param [IN] power RF ouptput power to be set.
594+
* \param [IN] power RF ouptut power to be set.
595595
* \retval status Status of the operation.
596596
*/
597597
LoRaMacStatus_t SetTxContinuousWave1( uint16_t timeout, uint32_t frequency, uint8_t power );
@@ -1264,7 +1264,7 @@ static void OnMacStateCheckTimerEvent( void )
12641264
if( ( ChannelsNbRepCounter >= LoRaMacParams.ChannelsNbRep ) || ( LoRaMacFlags.Bits.McpsInd == 1 ) )
12651265
{
12661266
if( LoRaMacFlags.Bits.McpsInd == 0 )
1267-
{ // Maximum repititions without downlink. Reset MacCommandsBufferIndex. Increase ADR Ack counter.
1267+
{ // Maximum repetitions without downlink. Reset MacCommandsBufferIndex. Increase ADR Ack counter.
12681268
// Only process the case when the MAC did not receive a downlink.
12691269
MacCommandsBufferIndex = 0;
12701270
AdrAckCounter++;

src/radio/sx1272/sx1272.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1508,7 +1508,7 @@ void SX1272OnDio2Irq( void )
15081508
switch( SX1272.Settings.Modem )
15091509
{
15101510
case MODEM_FSK:
1511-
// Checks if DIO4 is connected. If it is not PreambleDtected is set to true.
1511+
// Checks if DIO4 is connected. If it is not PreambleDetected is set to true.
15121512
if( SX1272.DIO4.port == NULL )
15131513
{
15141514
SX1272.Settings.FskPacketHandler.PreambleDetected = true;

src/radio/sx1276/sx1276.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1685,7 +1685,7 @@ void SX1276OnDio2Irq( void )
16851685
switch( SX1276.Settings.Modem )
16861686
{
16871687
case MODEM_FSK:
1688-
// Checks if DIO4 is connected. If it is not PreambleDtected is set to true.
1688+
// Checks if DIO4 is connected. If it is not PreambleDetected is set to true.
16891689
if( SX1276.DIO4.port == NULL )
16901690
{
16911691
SX1276.Settings.FskPacketHandler.PreambleDetected = true;

0 commit comments

Comments
 (0)