Skip to content

Commit 3e2ef70

Browse files
committed
Issue #1012 - Removed extra ; character where necessary
1 parent bb606c8 commit 3e2ef70

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/apps/LoRaMac/common/LmHandler/packages/FragDecoder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ static int32_t FragPrbs23( int32_t value )
569569
{
570570
int32_t b0 = value & 0x01;
571571
int32_t b1 = ( value & 0x20 ) >> 5;
572-
return ( value >> 1 ) + ( ( b0 ^ b1 ) << 22 );;
572+
return ( value >> 1 ) + ( ( b0 ^ b1 ) << 22 );
573573
}
574574

575575
static void FragGetParityMatrixRow( int32_t n, int32_t m, uint8_t *matrixRow )

src/boards/B-L072Z-LRWAN1/i2c-board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ uint8_t I2cMcuWaitStandbyState( I2c_t *obj, uint8_t deviceAddr )
164164
{
165165
uint8_t status = FAIL;
166166

167-
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;;
167+
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;
168168

169169
return status;
170170
}

src/boards/NAMote72/i2c-board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ uint8_t I2cMcuWaitStandbyState( I2c_t *obj, uint8_t deviceAddr )
163163
{
164164
uint8_t status = FAIL;
165165

166-
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;;
166+
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;
167167

168168
return status;
169169
}

src/boards/NucleoL073/i2c-board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ uint8_t I2cMcuWaitStandbyState( I2c_t *obj, uint8_t deviceAddr )
164164
{
165165
uint8_t status = FAIL;
166166

167-
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;;
167+
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;
168168

169169
return status;
170170
}

src/boards/NucleoL152/i2c-board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ uint8_t I2cMcuWaitStandbyState( I2c_t *obj, uint8_t deviceAddr )
163163
{
164164
uint8_t status = FAIL;
165165

166-
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;;
166+
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;
167167

168168
return status;
169169
}

src/boards/NucleoL476/i2c-board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ uint8_t I2cMcuWaitStandbyState( I2c_t *obj, uint8_t deviceAddr )
163163
{
164164
uint8_t status = FAIL;
165165

166-
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;;
166+
status = ( HAL_I2C_IsDeviceReady( &I2cHandle, deviceAddr, 300, 4096 ) == HAL_OK ) ? SUCCESS : FAIL;
167167

168168
return status;
169169
}

src/radio/lr1110/radio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ void RadioSetRxConfig( RadioModems_t modem, uint32_t bandwidth, uint32_t datarat
654654
lr1110_radio_set_gfsk_crc_params( &LR1110, 0x1D0F, 0x1021 );
655655
lr1110_radio_set_gfsk_whitening_params( &LR1110, 0x01FF );
656656

657-
RxTimeout = ( uint32_t )symbTimeout * 8000UL / datarate;;
657+
RxTimeout = ( uint32_t )symbTimeout * 8000UL / datarate;
658658
break;
659659

660660
case MODEM_LORA:

0 commit comments

Comments
 (0)