1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 14:28:07 +00:00

proto: add {ApplySettings,Storage}.auto_lock_delay_ms

This commit is contained in:
Roman Zeyde 2018-03-13 13:50:03 +02:00 committed by Pavol Rusnak
parent 66a85673ed
commit 260747dfa4
2 changed files with 2 additions and 0 deletions

View File

@ -175,6 +175,7 @@ message ApplySettings {
optional bool use_passphrase = 3;
optional bytes homescreen = 4;
optional PassphraseSourceType passphrase_source = 5;
optional uint32 auto_lock_delay_ms = 6;
}
/**

View File

@ -29,4 +29,5 @@ message Storage {
optional uint32 flags = 13; // device flags
optional HDNodeType u2froot = 14; // U2F root node
optional bool unfinished_backup = 15; // seed was improperly backed up
optional uint32 auto_lock_delay_ms = 16; // configurable auto-lock delay (in milliseconds)
}