Files @ 3824e42662b1
Branch filter:

Location: seniordesign-firmware/master/master/lib/gps.h

ethanzonca@CL-ENS241-08.cedarville.edu
Added APRS comment with some sensor values for testing, added method to procedurally create APRS comment, other various changes
/*
 * gpsMKa.h
 *
 * Created: 11/15/2012 12:02:53 PM
 *  Author: mkanning
 */ 


#ifndef GPSMKA_H_
#define GPSMKA_H_
#define GGA_MESSAGE
#define RMC_MESSAGE
#define UKN_MESSAGE

void gps_setup();
char* get_longitude();
char* get_latitude();
char* get_timestamp();
char* get_speedKnots();
char* get_course();
char* get_hdop();
char* get_sv();
char* get_dayofmonth();

#endif /* GPSMKA_H_ */