You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
293 B
20 lines
293 B
#pragma once
|
|
#include "iflytop_xsync/iflytop_xsync.h"
|
|
#include "project_configs.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void device_info_init();
|
|
typedef struct {
|
|
uint32_t sn0;
|
|
uint32_t sn1;
|
|
uint32_t sn2;
|
|
} sn_t;
|
|
|
|
void device_info_get_sn(sn_t* device_id);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|