mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-09 05:49:09 -07:00
21 lines
549 B
C
21 lines
549 B
C
// Application automatic lock timeout if user IDLE. (ticks)
|
|
#ifndef TOTP_AUTO_LOCK_IDLE_TIMEOUT_SEC
|
|
#define TOTP_AUTO_LOCK_IDLE_TIMEOUT_SEC (60)
|
|
#endif
|
|
|
|
// Include Bluetooth token input automation
|
|
#ifndef TOTP_NO_BADBT_AUTOMATION
|
|
#define TOTP_BADBT_AUTOMATION_ENABLED
|
|
#endif
|
|
|
|
// List of compatible firmwares
|
|
#define TOTP_FIRMWARE_OFFICIAL_STABLE (1)
|
|
#define TOTP_FIRMWARE_OFFICIAL_DEV (2)
|
|
#define TOTP_FIRMWARE_XTREME_UL (3)
|
|
// End of list
|
|
|
|
// Target firmware
|
|
#ifndef TOTP_TARGET_FIRMWARE
|
|
#define TOTP_TARGET_FIRMWARE TOTP_FIRMWARE_XTREME_UL
|
|
#endif
|