blob: f56c7fbc1781d3174f3ea8ffec90a9dfc8ee0778 [file] [log] [blame]
b.liue77ac3a2024-07-17 17:36:57 +08001/*
2* mbtk_gnss_inter.h
3*
4* MBTK GNSS internal header.
5*
6* Author : lb
7* Date : 2024/7/11 16:18:42
8*/
9#ifndef __MBTK_GNSS_INTER_H
10#define __MBTK_GNSS_INTER_H
11#include <pthread.h>
12
13#include "mbtk_gnss.h"
14#include "mbtk_type.h"
15
16#define SOCK_GNSS_PATH "/tmp/mbtk_gnss_sock"
17#define EPOLL_LISTEN_MAX 100
18
yq.wang9dd771b2024-09-13 23:38:40 -070019typedef enum {
20 GNSS_EPH_GPS = 0,
21 GNSS_EPH_BDS,
22 GNSS_EPH_GLO,
23 GNSS_EPH_GPS_BDS,
24 GNSS_EPH_GPS_GLO,
25
26 GNSS_EPH_CFG = 10, //get eph data by cfg parameters
27} gnss_eph_data_enum;
b.liue77ac3a2024-07-17 17:36:57 +080028
29#endif /* __MBTK_GNSS_INTER_H */