/* | |
* mbtk_gnss_inter.h | |
* | |
* MBTK GNSS internal header. | |
* | |
* Author : lb | |
* Date : 2024/7/11 16:18:42 | |
*/ | |
#ifndef __MBTK_GNSS_INTER_H | |
#define __MBTK_GNSS_INTER_H | |
#include <pthread.h> | |
#include "mbtk_gnss.h" | |
#include "mbtk_type.h" | |
#define SOCK_GNSS_PATH "/tmp/mbtk_gnss_sock" | |
#define EPOLL_LISTEN_MAX 100 | |
typedef enum { | |
GNSS_EPH_GPS = 0, | |
GNSS_EPH_BDS, | |
GNSS_EPH_GLO, | |
GNSS_EPH_GPS_BDS, | |
GNSS_EPH_GPS_GLO, | |
GNSS_EPH_CFG = 10, //get eph data by cfg parameters | |
} gnss_eph_data_enum; | |
#endif /* __MBTK_GNSS_INTER_H */ |