> Am I right to say that i'm suppose to bundle all the outputs (time, alt,
lat , long) together then connect it to a "write character to file" and
it will output it to a text file?
No. Use Format Into String in the string palette. Wire that string to "Write
Characters To File". If you do it like this, you get binary data in the
file, not text.
If the VI main garmin.vi (I'm not familiar with it) returns strings, you can
also use the "concatenate string" function. If this is the case you might
get away with the bundle approach, but it's not very nice programming.
> Another problem is that altitude is found only in gpgga format while date
is only in gpmrc format. This two are as different case in the main
garmin.vi, hence what should be the the procedure to link the two
together as a single text file?
Make a sub VI that waits for both messages (use the main garmin.vi twice).
Put the results in the Format Into String function.
Or use (a copy of) the main garmin.vi to build your own vi, that stops once
it received the two messages. Put the results in the Format Into String
function.
Regards,
Wiebe.