Home > Net >  Window in the load function execute only one instruction??
Window in the load function execute only one instruction??

Time:04-10

Private Sub FormPrj1_Load (ByVal sender As System. Object, ByVal e the As System. EventArgs) Handles MyBase. Load

M_GNSS. Init1 ()
MsgBox (" hello1 ")

Timer1. Enabled=True 'start scanning

M_GNSS. Parse (" $GBVTG, 181.03, T., M, 2.774 N, 5.137, K, A * 22 ")
MsgBox (" hello2 ")
'm_GNSS. Parse (" $GBGGA, 073822.00, 4000.00520, N, 11622.20063 E, 1,06,1.87, 41.4 M, 8.6, M,, * 6 a ")
End Sub

Only perform m_GNSS. Init1 (), one side shall not perform what happened??????

CodePudding user response:

That you posted m_GNSS. Init1 () method to see
Miss someone do NMEA data analysis, good,

CodePudding user response:

It is only one possible implementation of this method is wrong, should see if there are any mistakes in this code.
  • Related