blob: 4908ecf703c1c9bd08348cd3e671b6127c5f1be3 [file] [log] [blame]
j.luob2775682024-02-28 17:16:59 +08001/**@file lynq-systime.h
2 *
3 * @brief Sync systime form each time source.
4 *
5 * @author sj.zhang
6 *
7 * @date 2023-08-14
8 *
9 * @version V1.0
10 *
11 * @copyright Copyright (c) MobileTek
12 */
13
14#ifndef _LYNQ_CHIP_ID_H_
15#define _LYNQ_CHIP_ID_H_
16
17#ifdef __cplusplus
18extern "C"
19{
20#endif
21/**@brief get chip id.
22*
23* @param void
24*
25* @return
26* 0:success
27* other:failure
28*/
29int lynq_get_chip_id(char *chip_id);
30
31#ifdef __cplusplus
32}
33#endif
34#endif