Skip to content

Commit

Permalink
[app_server] send flight_altitude index to android device
Browse files Browse the repository at this point in the history
  • Loading branch information
gautierhattenberger committed Jun 4, 2014
1 parent e8c825e commit 63f39de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sw/ground_segment/tmtc/app_server.c
Expand Up @@ -185,12 +185,13 @@ int get_ac_data(char* InStr, char* RetBuf) {
//Get & create return string
if ( AcID > 0 ) {
//Dont search it, it is thereeee :)
sprintf(RetBuf, "AppServer ACd %d %s %s %s %d %d\n", AcID,
sprintf(RetBuf, "AppServer ACd %d %s %s %s %d %d %d\n", AcID,
DevNames[AcID].name,
DevNames[AcID].type,
DevNames[AcID].color,
DevNames[AcID].dl_launch_ind,
DevNames[AcID].kill_thr_ind);
DevNames[AcID].kill_thr_ind,
DevNames[AcID].flight_altitude_ind);
}
return AcID;
}
Expand Down

0 comments on commit 63f39de

Please sign in to comment.