我想用 libgps 读取我的 GPS 坐标。
这是我的代码:
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <gps.h>
int main(void){
struct gps_data_t gps_data;
int ret = 0;
ret = gps_open("localhost", "2947", &gps_data);
gps_stream(&gps_data, WATCH_ENABLE | WATCH_JSON, NULL);
if (gps_waiting (&gps_data, 500)) {
if (gps_read (&gps_data) == -1) {
fprintf(stdout, "Error #3: No GPS data available! Retrying ...\n");
}
else {
fprintf(stdout, "GPS-Data: Latitude: %f, Longitude: %f, Altitude: %.1f, Timestamp: %ld\n", gps_data.fix.latitude, gps_data.fix.longitude, gps_data.fix.altitude);
}
}
/* When you are done... */
gps_stream(&gps_data, WATCH_DISABLE, NULL);
gps_close (&gps_data);
return 0;
}
不幸的是,我总是得到这个结果:
GPS-Data:纬度:nan,经度:nan,海拔:nan,时间戳:301989888
所以 gpsd 没有返回任何 GPS 坐标...
但是如果我执行sudo gpscat -s 4800 /dev/ttyACM0
:
$GPGGA,190238.00,4819.14754,N,01512.57069,E,2,11,0.83,469.6,M,43.1,M,,0000*53
有谁知道可能出了什么问题?