deadpickle has asked for the wisdom of the Perl Monks concerning the following question:
I have received this error:#!/usr/bin/perl #perl2exe_include "bytes.pm" use GPS::NMEA; use Data::Dumper; my $gps = GPS::NMEA->new(Port => 'COM6', # or COM5: or /dev/ttyS0 Baud => 4800); while(1) { $gps->parse; # Dump internal NMEA data: $gps->nmea_data_dump; # Alternative to look at the internal NMEA data: require Data::Dumper; print Data::Dumper->new([$gps->{NMEADATA}],[])->Indent(1)->Use +qq(1)->Dump; } __END__
which sounds like it could be a baud problem but I have tried it with several other values and received the same error.Second Read attempted before First is done at C:/Perl/site/lib/GPS/Ser +ial.pm lin e 55
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Errors in GPS::Serial
by waba (Monk) on May 28, 2008 at 06:37 UTC |