21 lines
405 B
C
21 lines
405 B
C
|
|
/*
|
||
|
|
* Copyright (c) CompanyNameMagicTag 2012-2019. All rights reserved.
|
||
|
|
* Description: Implements system reset information store.
|
||
|
|
* Author: CompanyName
|
||
|
|
* Create: 2012-11-09
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef __SAL_SYS_H__
|
||
|
|
#define __SAL_SYS_H__
|
||
|
|
|
||
|
|
#include <soc_types.h>
|
||
|
|
|
||
|
|
EXT_CPP_START
|
||
|
|
|
||
|
|
td_u32 uapi_rst_times_init(td_void);
|
||
|
|
|
||
|
|
td_void uapi_init_build_version(td_void);
|
||
|
|
|
||
|
|
EXT_CPP_END
|
||
|
|
#endif /* __SAL_SYS_H__ */
|