Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartins-ledger authored and tjoly-ledger committed Sep 27, 2023
1 parent 79cfbb7 commit 666b901
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/os_io_seproxyhal.c
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ void io_seproxyhal_setup_ticker(unsigned int interval_ms)
buffer[1] = 0;
buffer[2] = 2;
buffer[3] = (interval_ms >> 8) & 0xff;
buffer[4] = (interval_ms) & 0xff;
buffer[4] = (interval_ms) &0xff;
io_seproxyhal_spi_send(buffer, 5);
}

Expand Down Expand Up @@ -1556,7 +1556,7 @@ unsigned short io_exchange(unsigned char channel, unsigned short tx_len)
&& os_global_pin_is_validated() != BOLOS_TRUE) {
tx_len = 0;
G_io_apdu_buffer[(tx_len)++] = (SWO_SEC_PIN_15 >> 8) & 0xFF;
G_io_apdu_buffer[(tx_len)++] = (SWO_SEC_PIN_15) & 0xFF;
G_io_apdu_buffer[(tx_len)++] = (SWO_SEC_PIN_15) &0xFF;
channel &= ~IO_FLAGS;
goto reply_apdu;
}
Expand Down

0 comments on commit 666b901

Please sign in to comment.