32 lines
941 B
C
32 lines
941 B
C
/*----------------------------------------------------------------------------
|
|
* Copyright (c) TJD Technologies Co., Ltd. 2020. All rights reserved.
|
|
*
|
|
* Description: service_startup.h
|
|
*
|
|
* Author: saimen
|
|
*
|
|
* Create: 2024-9-24
|
|
*--------------------------------------------------------------------------*/
|
|
#ifndef SERVICE_STARTUP_H
|
|
#define SERVICE_STARTUP_H
|
|
//lib
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/**********************************************************************************************************************
|
|
* PUBLIC FUNCTIONS
|
|
*/
|
|
extern void tjd_service_startup_task_watchdog_update(unsigned int status);
|
|
extern void tjd_service_startup_task_ui_update(unsigned int status);
|
|
extern void tjd_service_startup_status_check_start(void);
|
|
extern void tjd_service_startup_status_check_stop(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |