b.liu | e77ac3a | 2024-07-17 17:36:57 +0800 | [diff] [blame] | 1 | /* |
| 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.wang | 9dd771b | 2024-09-13 23:38:40 -0700 | [diff] [blame] | 19 | typedef 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.liu | e77ac3a | 2024-07-17 17:36:57 +0800 | [diff] [blame] | 28 | |
| 29 | #endif /* __MBTK_GNSS_INTER_H */ |