2023-06-10 05:22:34 +03:00
|
|
|
// Application automatic lock timeout if user IDLE. (ticks)
|
|
|
|
#ifndef TOTP_AUTO_LOCK_IDLE_TIMEOUT_SEC
|
|
|
|
#define TOTP_AUTO_LOCK_IDLE_TIMEOUT_SEC (60)
|
|
|
|
#endif
|
|
|
|
|
2023-04-05 22:45:27 +03:00
|
|
|
// Include Bluetooth token input automation
|
2023-07-24 13:47:44 +03:00
|
|
|
#ifndef TOTP_NO_BADBT_TYPE
|
2023-03-21 19:03:53 +03:00
|
|
|
#define TOTP_BADBT_TYPE_ENABLED
|
2023-07-24 13:47:44 +03:00
|
|
|
#endif
|
2023-04-05 22:45:27 +03:00
|
|
|
|
|
|
|
// Include token input automation icons on the main screen
|
2023-07-24 13:47:44 +03:00
|
|
|
#ifndef TOTP_NO_AUTOMATION_ICONS
|
2023-04-05 22:45:27 +03:00
|
|
|
#define TOTP_AUTOMATION_ICONS_ENABLED
|
2023-07-24 13:47:44 +03:00
|
|
|
#endif
|
2023-04-05 22:45:27 +03:00
|
|
|
|
|
|
|
// List of compatible firmwares
|
2023-07-24 13:47:44 +03:00
|
|
|
#define TOTP_FIRMWARE_OFFICIAL_STABLE (1)
|
|
|
|
#define TOTP_FIRMWARE_OFFICIAL_DEV (2)
|
|
|
|
#define TOTP_FIRMWARE_XTREME_UL (3)
|
2023-04-05 22:45:27 +03:00
|
|
|
// End of list
|
|
|
|
|
2023-07-24 13:47:44 +03:00
|
|
|
#ifndef TOTP_TARGET_FIRMWARE
|
|
|
|
#define TOTP_TARGET_FIRMWARE TOTP_FIRMWARE_XTREME_UL
|
|
|
|
#endif
|