31 lines
881 B
C
31 lines
881 B
C
/*----------------------------------------------------------------------------
|
|
* Copyright (c) TJD Technologies Co., Ltd. 2020. All rights reserved.
|
|
*
|
|
* Description: service_ancillary.h
|
|
*
|
|
* Author: saimen
|
|
*
|
|
* Create: 2024-7-11
|
|
*--------------------------------------------------------------------------*/
|
|
#ifndef SERVICE_ANCILLARY_H
|
|
#define SERVICE_ANCILLARY_H
|
|
//lib
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/**********************************************************************************************************************
|
|
* PUBLIC FUNCTIONS
|
|
*/
|
|
extern void tjd_service_ancillary_device_restart(void);
|
|
extern void tjd_service_ancillary_data_save_process(uint32_t save_type);
|
|
extern void tjd_service_ancillary_data_save(uint32_t save_type);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |