gpt4 book ai didi

JAVA - GPS 接收器在控制台中发送奇怪/编码的帧

转载 作者:行者123 更新时间:2023-12-01 13:42:19 24 4
gpt4 key购买 nike

我有一个 GPS 接收器,它向我发送 NMEA 帧。我的代码检索这些内容,但形式非常奇怪:

enter image description here

我正在使用PuTTY查看我的接收器收到的 NMEA 帧,没有问题。

enter image description here

编辑 - 这是我正在使用的代码:

public class GPSFrame extends Observable implements Runnable
{
static Thread myThread=null;
static BufferedReader br;
static BufferedWriter wr;
static PrintWriter out;
static InputStreamReader isr;
static OutputStreamWriter osw;
static java.io.RandomAccessFile port;


/** CONSTRUCTOR **/
public GPSFrame()
{
myThread=new Thread(this);
}

public void start()
{
try
{
port=new java.io.RandomAccessFile("COM5","rwd");
port.writeBytes("\r\n");
port.writeBytes("c,31,0,0,5\r\n");
port.writeBytes("T,1000,1\r\n");
}
catch (Exception e){ System.out.println("start "+e.toString()); }
// The thread start automatically run() method
myThread.start();
}

/**********************************************************************************************
*************************** RETRIEVE GPS FRAMES AND SEND TO SERVEUR **************************
**********************************************************************************************/
public void run()
{
System.out.println("lecture COM...");
// INFINIT LOOP - GPSFrame is always listening for the GPS receptor
for(;;)
{
String st = null;
try
{
st=port.readLine();
String[]gpsframe=st.split(",");

/* IMPORTANT - DON'T FORGET SETCHANGED() or GPSFrame'll never
* notify UPDATE() ServerBoard method - We'll never see any changes */
setChanged();
notifyObservers(st);

}
catch (IOException e){ System.out.println(e.getMessage()); }
// Show in console
System.out.println(st);
}
}
}

编辑:

当我第一次阅读 GPS 帧时 PuTTY 然后启动我的应用程序,我可以在控制台中看到正确的 GPS 帧。但是当我尝试首先使用我的应用程序读取 GPS 帧时,我已经对帧进行了编码。

我不知道为什么我无法检索这种形式的帧。有人可以指导我解决这个问题吗?

提前感谢您!

问候,

bean 腐

最佳答案

正如我在评论中所说,您没有正确从 COM 端口读取数据。我找到了一个库,可以帮助您了解如何从 com 端口读取数据。代码很旧,但我认为它仍然有帮助: http://javanmea.sourceforge.net/

查看这些类:NMEAReaderCustomReader

还有一个类似的 C++ 线程可能会有所帮助。 Receive NMEA0183 data from COM PORT C++

如果您找到解决方案,请发布。看到它会很有趣:)

关于JAVA - GPS 接收器在控制台中发送奇怪/编码的帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20631411/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com