Datos de NMEA (GPS) no válidos

0

Estoy analizando los datos entrantes de un módulo GPS BN-180. Los datos que estoy imprimiendo no se parecen a ninguna oración NMEA. Estoy usando una tabla de tareas Parallax Basic Stamp 2. En mi último intento, intenté imprimir los datos como ASCII.

¿Cuál es el problema? Gracias de antemano.

Aquí están los datos.

variable = "$"
variable = "F"
variable = "d"
variable = "/"
variable = "i"
variable = "6"
variable = "v"
variable = "4"
variable = "'"
variable = "B"
variable = "("
variable = "6"
variable = "t"
variable = "d"
variable = "4"
variable = "t"
variable = "o"
variable = " "
variable = "d"
variable = "p"

Aquí está mi código

' {$STAMP BS2}
' {$PBASIC 2.5}

variable VAR Byte
looping VAR Word
FOR looping = 0 TO 5000
  SERIN 1, 9600, [variable]
  DEBUG ASC ?variable
NEXT
END
    
pregunta Rish

0 respuestas

Lea otras preguntas en las etiquetas