Changeset - a675e30661bd
[Not reviewed]
default
0 1 0
Ethan Zonca (ethanzonca) - 9 years ago 2017-01-03 14:53:00
e@ethanzonca.com
Actual GPS now correctly passed though
1 file changed with 20 insertions and 23 deletions:
0 comments (0 inline, 0 general)
Libraries/aprs/aprs.c
Show inline comments
 
@@ -61,36 +61,33 @@ void aprs_send(void)
 
  tmpBuffer[0] = ',';
 
  tmpBuffer[1] = '\0';
 

	
 
  //ax25_send_string(get_latitude());
 
  snprintf(tmpBuffer, 128, "%g,", gps_getdata()->latitude / 10000000.0);
 
  //ax25_send_string("42.153749");
 
  // Latitude
 
  snprintf(tmpBuffer, 128, "%ld,", gps_getdata()->latitude);
 
  ax25_send_string(tmpBuffer);
 
  ax25_send_byte(',');
 
  //ax25_send_string(get_longitude());
 
  ax25_send_string("53.234823");
 
  ax25_send_byte(',');
 
  
 
  //ax25_send_string(get_speedKnots());
 
  ax25_send_string("33");
 
  ax25_send_byte(','); 
 
  
 
  //ax25_send_string(get_gpsaltitude());
 
  ax25_send_string("3847");
 
  ax25_send_byte(','); 
 
  // Longitude
 
  snprintf(tmpBuffer, 128, "%ld,", gps_getdata()->longitude);
 
  ax25_send_string(tmpBuffer);
 

	
 
  // Speed
 
  snprintf(tmpBuffer, 128, "%d,", gps_getdata()->speed);
 
  ax25_send_string(tmpBuffer);
 

	
 
  //ax25_send_string(get_pressure());
 
  ax25_send_string("8383.00");
 
  ax25_send_byte(','); 
 
  // Altitude
 
  snprintf(tmpBuffer, 128, "%d,", gps_getdata()->altitude);
 
  ax25_send_string(tmpBuffer);
 

	
 
  //ax25_send_string(get_temperature());
 
  ax25_send_string("25.3");
 
  ax25_send_byte(','); 
 
  // Pressure
 
  snprintf(tmpBuffer, 128, "%d,", 23);
 
  ax25_send_string(tmpBuffer);
 
  
 
  //ax25_send_string(get_temperature());
 
  // Temperature
 
  snprintf(tmpBuffer, 128, "%d,", 77);
 
  ax25_send_string(tmpBuffer);
 

	
 
  // HDOP
 
  snprintf(tmpBuffer, 128, "%u,", gps_getdata()->pdop);
 
  ax25_send_string(tmpBuffer);
 
	//ax25_send_string(get_hdop());
 
	//ax25_send_byte(',');
 

	
 

	
 
  ax25_send_footer();
0 comments (0 inline, 0 general)