/ src / app / app_settings.c
app_settings.c
 1  #include "app_settings.h"
 2  
 3  // global settings object, initialized with default values
 4  app_settings_t SETTINGS = {
 5  	.version = CURRENT_SETTINGS_VERSION,
 6  	.boot_screen_timeout_ms = 1000,
 7  	.backlight_brightness = UINT8_MAX,
 8  	.ntag_default_password_authentication_acknowledgement = {0x80, 0x80},
 9  	.crypto_expected_values = {
10  		.combined_keys = {
11  			0x7f, 0x92, 0x83, 0x65, 0x4e, 0xc1, 0x09, 0x7f,
12  			0xbd, 0xff, 0x31, 0xde, 0x94, 0x66, 0x51, 0xae,
13  			0x60, 0xc2, 0x85, 0x4a, 0xfb, 0x54, 0x4a, 0xbe,
14  			0x89, 0x63, 0xd3, 0x89, 0x63, 0x9c, 0x71, 0x0e},
15  	},
16  	.crypto_keys = {
17  		.data_key = {0},
18  		.tag_key = {0},
19  	},
20  };