aem_def_settings_if.h 336 B

1234567891011121314151617
  1. #ifndef _AEM_DEFAULT_SETTINGS_IF_H_
  2. #define _AEM_DEFAULT_SETTINGS_IF_H_
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. #pragma pack(push, 1)
  6. typedef struct
  7. {
  8. uint8_t def; // 默认息屏时间 sec
  9. const uint8_t *otps_range; // 息屏时间范围
  10. uint8_t otps_num;
  11. } aem_scr_lock_time_t;
  12. #pragma pack(pop)
  13. #endif