HomeSort by relevance Sort by last modified time
    Searched refs:nmeaBuffer (Results 1 - 4 of 4) sorted by null

  /hardware/bsp/intel/peripheral/libupm/examples/c++/
ublox6.cxx 68 char nmeaBuffer[bufferLength];
75 int rv = nmea->readData(nmeaBuffer, bufferLength);
78 write(1, nmeaBuffer, rv);
  /hardware/bsp/intel/peripheral/libupm/examples/java/
Ublox6Sample.java 58 byte[] nmeaBuffer = new byte[BUFFERLENGTH];
64 int rv = nmea.readData(nmeaBuffer);
68 System.out.print((char) nmeaBuffer[i]);
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
ublox6.js 47 var nmeaBuffer = new GPSSensor.charArray(bufferLength);
55 var rv = myGPSSensor.readData(nmeaBuffer, bufferLength);
65 GPSData += nmeaBuffer.getitem(x);
  /hardware/bsp/intel/peripheral/libupm/examples/python/
ublox6.py 59 nmeaBuffer = upmUblox6.charArray(bufferLength)
65 rv = myGPSSensor.readData(nmeaBuffer, bufferLength)
73 GPSData += nmeaBuffer.__getitem__(x)

Completed in 270 milliseconds