Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

https://lettucemeet.com/l/DZdno

CV Requirements (jetson)

PM Requirements

AM → PM Struct:

typedef struct CommandsFromAM{
    bool armed;  
} CommandsFromAM;

GSPC → PM Struct:

struct TelemWaypointData {    
  double longitude;  //    
  double lattiude;   
  uint8_t waypoint_id; 
};

typedef struct CommandsFromTM{
    bool start_landing;
    uint8_t num_waypoints; // number of waypoints in the list 
    TelemWaypointData waypoints[num_waypoints]; 
} CommandsFromTM;

Jetson → PM Struct:

(or is this AM)

struct JetsonToZpMovementCommand {
  float x;
  float y;
  float z;
  float heading;
}

SM Stuff

System Manager Data Structs and Flow

AM Requirements

Ground Station Requirements

  • No labels