Port current config on Standard App Makefile

This commit is contained in:
Charles-Edouard de la Vergne
2024-04-08 18:14:33 +02:00
parent a72d741dc8
commit f218fb8b92
58 changed files with 274 additions and 330 deletions

View File

@@ -14,9 +14,9 @@ void handleGetAppConfiguration(uint8_t p1,
UNUSED(flags);
G_io_apdu_buffer[0] = (N_storage.dataAllowed ? APP_FLAG_DATA_ALLOWED : 0x00);
G_io_apdu_buffer[0] |= APP_FLAG_EXTERNAL_TOKEN_NEEDED;
G_io_apdu_buffer[1] = LEDGER_MAJOR_VERSION;
G_io_apdu_buffer[2] = LEDGER_MINOR_VERSION;
G_io_apdu_buffer[3] = LEDGER_PATCH_VERSION;
G_io_apdu_buffer[1] = MAJOR_VERSION;
G_io_apdu_buffer[2] = MINOR_VERSION;
G_io_apdu_buffer[3] = PATCH_VERSION;
*tx = 4;
THROW(0x9000);
}