Skip to content

Commit

Permalink
Fixed bracket spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanRuzavin committed Dec 26, 2024
1 parent 2e98df7 commit 6b13436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion middleware/lcd/lib/src/lcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ static inline void lcd_write_bit_of_data( lcd_handle_t lcd_handle, uint8_t value

for ( uint8_t i = 0; i < 8; i++ ) {
if ( HAL_PIN_NC != *data_pin_iteration ) {
digital_out_write( &lcd_handle.data_pins[i], (( value >> cnt ) & 0x01) );
digital_out_write( &lcd_handle.data_pins[i], ( ( value >> cnt ) & 0x01 ) );
cnt++;
}
data_pin_iteration++;
Expand Down

0 comments on commit 6b13436

Please sign in to comment.