lto missing inits

This commit is contained in:
iceman1001 2023-08-02 17:46:53 +02:00
commit 2b3d339714
3 changed files with 4 additions and 4 deletions

View file

@ -663,7 +663,7 @@ static int CmdIndalaSim(const char *Cmd) {
bool fmt4041x = arg_get_lit(ctx, 5);
int32_t cardnumber;
int32_t cardnumber = 0;
uint8_t fc = 0;
uint16_t cn = 0;
bool got_cn = false, got_26 = false;

View file

@ -156,7 +156,7 @@ static void SendCommandNG_internal(uint16_t cmd, uint8_t *data, size_t len, bool
memcpy(&txBufferNG.data, data, len);
if ((g_conn.send_via_fpc_usart && g_conn.send_with_crc_on_fpc) || ((!g_conn.send_via_fpc_usart) && g_conn.send_with_crc_on_usb)) {
uint8_t first, second;
uint8_t first = 0, second = 0;
compute_crc(CRC_14443_A, (uint8_t *)&txBufferNG, sizeof(PacketCommandNGPreamble) + len, &first, &second);
tx_post->crc = (first << 8) + second;
} else {