1234567891011121314151617 |
- #ifndef _AEM_DEFAULT_SETTINGS_IF_H_
- #define _AEM_DEFAULT_SETTINGS_IF_H_
- #include <stdint.h>
- #include <stdbool.h>
- #pragma pack(push, 1)
- typedef struct
- {
- uint8_t def; // 默认息屏时间 sec
- const uint8_t *otps_range; // 息屏时间范围
- uint8_t otps_num;
- } aem_scr_lock_time_t;
- #pragma pack(pop)
- #endif
|