You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
322 B
26 lines
322 B
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*- |
|
|
|
#include "GPS.h" |
|
#include <stdio.h> |
|
|
|
void |
|
GPS::init(void) |
|
{ |
|
} |
|
|
|
void |
|
GPS::update(void) |
|
{ |
|
} |
|
|
|
void |
|
GPS::_error(const char *fmt, ...) |
|
{ |
|
va_list ap; |
|
|
|
if (print_errors && stderr) { |
|
va_start(ap, fmt); |
|
vfprintf(stderr, fmt, ap); |
|
va_end(ap); |
|
} |
|
}
|
|
|