device_alive.h 182 B

12345678
  1. #ifndef DEVICE_ALIVE_H
  2. #define DEVICE_ALIVE_H
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. extern bool device_time_flag ;
  6. bool time_arrive(uint32_t time );
  7. void clear_time_flag();
  8. #endif