0

I have a GPS receptor, which send me NMEA frames. My code retrieve these ones, but in a really strange form :

enter image description here

I am using PuTTY to see the NMEA frames received by my receptor, and there is no problem.

enter image description here

EDIT - Here is the code I am using :

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);
        }
    }   
}

EDIT :

When I first read GPS Frames with PuTTY then launch my application, I can see correct GPS Frames in console. But when I try to read the GPS Frame with my application first, I have encoded Frames.

I don't know why I can't retrieve the frames in this form. Can someone guide me to resolve this problem please ?

Thanks to you in advance !

Regards,

Tofuw

4

2 回答 2

1

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

查看这些类:NMEAReaderCustomReader

还有一个类似的 c++ 线程可能会有所帮助。从 COM PORT C++ 接收 NMEA0183 数据

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

于 2013-12-18T14:55:29.280 回答
0

我找到了解决我的问题的方法!:D

我的代码有点问题,因为我使用 RandomAccessFile 在我的 COM 端口上读取。使用这种方法,我可以读取接收器发送的帧,但不能正确读取。解决了它,我必须CONFIGURE the COM PORT,这是 RandomAccessFile 不可能的

我做了一个配置测试:

  • 使用 DATABITS_5 或 DATABITS_6,我收到了这些帧:

    $% () :2 ")1" 2

  • 但是使用 DATABITS_7 或 DATABITS_8,我收到了很好的帧:

    $GPRMC,100409.000,A,4858.018,N,00150.999,E,0.0,0.0,201213,0.0,W*70 $GPGGA,100409.000,4858.01754,N,00150.99913,E,1,15,0.7,034.93,M,7.4 ,M,,*66

我认为默认情况下,Databits 或配置为 5 或 6。这取决于。这就是为什么最好自己配置端口。

配置 COM 端口的方式(或方式之一?)是使用SerialPort

这是一个非常有用的解决方案(在此示例中,我们正在使用事件模式读取数据,但您可以使用流模式 - 请参阅下面的第二个链接)

public class GPScom implements SerialPortEventListener
{
    private String portcom;
    private CommPortIdentifier portid=null; 
    private SerialPort serialport; 
    private BufferedReader fluxgps; // Reading flow port where the GPS is connected

        public static void main(String[]args)
    {
        // Driver initialization
        Win32Driver driver=new Win32Driver();
        driver.initialize();

        GPScom gpscom=new GPScom();
        gpscom.listPort();
    }

    // Scanning all available ports
    public void listPort()
    {
        Enumeration listport=CommPortIdentifier.getPortIdentifiers();
        int typeport;
        String GPSPortCOM;

        while(listport.hasMoreElements())
        {
            portid=(CommPortIdentifier)(CommPortIdentifier)listport.nextElement();
            if(portid.getPortType()==CommPortIdentifier.PORT_SERIAL)
            {
                System.out.println("Port Name : "+portid.getName());
                System.out.println("User : "+portid.getCurrentOwner());
                System.out.println("Use ? : "+portid.isCurrentlyOwned());
                System.out.println("Port type : "+portid.getPortType());

                this.ModeEvenement(portid.getName());
            }
        }
    }

    // Initialization of the port
    public void ModeEvenement(String portcom)
    {
        // Retrieve ID Port
        try{portid=CommPortIdentifier.getPortIdentifier(portcom);}
        catch(NoSuchPortException e){System.out.println(e);}

        // Open Port
        try{serialport=(SerialPort)portid.open("ModeEvenement",2000);}
        catch(PortInUseException e){System.out.println(e);}

        // Retrieve data flow
        try{fluxgps=new BufferedReader(new InputStreamReader(serialport.getInputStream()));}
        catch(IOException e){System.out.println(e);}

        // Add listener
        try{serialport.addEventListener(this);}
        catch(TooManyListenersException e){System.out.println(e);}

        // Configure Port
        serialport.notifyOnDataAvailable(true);
        try{serialport.setSerialPortParams(4800, SerialPort.DATABITS_6, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);}
        catch(UnsupportedCommOperationException e){System.out.println(e);}

        System.out.println("Port is open, waiting for the reading");
    }

    // Here we are reading 7 frames for test
    public void ReadSerialPort()
    {
        int i=7;
        String reponse=new String();

        try
        {
            System.out.println("i="+i);
            while(i!=0)
            {
                System.out.println("Reading the COM port \n");
                reponse=(String)fluxgps.readLine();
                System.out.println(reponse);
                i--;
                System.out.println("i="+i);
            }           
        }
        catch(IOException e){System.out.println(e);}

        // On ferme le flux de lecture
        try{fluxgps.close();}
        catch(IOException e){System.out.println(e);}

        serialport.close();
    }

    public void serialEvent(SerialPortEvent event)
    {
        // We are only reading data if available
        switch(event.getEventType())
        {
            case SerialPortEvent.DATA_AVAILABLE:
                this.ReadSerialPort(); // Launching the reading if data are available
                break;
            default:
                break; // Else, do nothing
        }
    }   
}

这是我找到这个解决方案的地方(/!\法国网站:D):

如果你遇到和我一样的问题,希望对你有帮助

祝你今天过得愉快 !!!

豆腐

PS:感谢帮助我的 Aphex 和 AlexWien

于 2013-12-20T10:12:29.920 回答