features_config.h 579 B

123456789101112131415161718192021
  1. // Include Bluetooth token input automation
  2. #ifndef TOTP_NO_BADBT_TYPE
  3. #define TOTP_BADBT_TYPE_ENABLED
  4. #endif
  5. // Include token input automation icons on the main screen
  6. #ifndef TOTP_NO_AUTOMATION_ICONS
  7. #define TOTP_AUTOMATION_ICONS_ENABLED
  8. #endif
  9. // List of compatible firmwares
  10. #define TOTP_FIRMWARE_OFFICIAL_STABLE (1)
  11. #define TOTP_FIRMWARE_OFFICIAL_DEV (2)
  12. #define TOTP_FIRMWARE_XTREME (3)
  13. // End of list
  14. // Target firmware to build for.
  15. #ifndef TOTP_TARGET_FIRMWARE
  16. // Defaulting to Xtreme if not previously defined
  17. #define TOTP_TARGET_FIRMWARE TOTP_FIRMWARE_XTREME
  18. #endif