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 8 Next »

https://lettucemeet.com/l/DZdno

CV Requirements (jetson)

ZP-Jetson communication is over UART. ZP initiates all communication and Jetson responds if required. Jetson does not initiate communication.

Jetson receives:

  • Position Data (GPS/IMU → SF Struct): Contains location + height and orientation.

  • Request for relative movement command (System Manager).

Jetson transmits:

  • Movement command.

  • Landing initiation command.

PM Requirements

  • Waypoints (SM)

  • InitiateLanding Bool (Jetson)

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;

PM → AM Struct:

typedef struct CommandsForAM_t{
  WaypointType waypoint_type;  // not necessary

  // heading unit vector and magnitude
  float dist_x; 
  float dist_y; 
  float dist_z; 
  float magnitude; // Magnitude distance to waypoint target
  float heading; // heading at target waypoint
  double speed_target; // Target velocity of drone approaching target
} CommandsForAM;

Jetson → PM Struct:

(or is this AM)

relative to drone (drone-centered)

  • Directions: Bow/stern, port/starboard, ventral/dorsal.

maximum size of x,y, z: 150 meters positive or negative, accurate to cm

max size of heading: 360 accurate to degree

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

SM Stuff

System Manager Data Structs and Flow

  • Software ARM/DISARM (GSPC)

  • PID Values (GSPC)

  • WayPoints (GSPC)

    • FlightMode Request (GSPC)

  • Jetson → PM Struct (Jetson)

AM Requirements

  • PID Values (SM)

    • unknown number of controllers

    • For each controller 6 sets of P I and D values

    • Send them up one controller at a time

Ground Station Requirements

  • Motor Outputs (SM)

  • PID Controllers and Values

  • Sensors

    • sensor fusion output [look at sf_pos interface in LOS]

    • All of them (SM)

    • GPS

    • IMU

    • airspeed

    • rate of climb

    • ALTITUDE

    • airspeed sensor information

  • Battery Voltages (SM)

  • Controller Values (SM)

  • Attitude (Sensor Fusion or SM)

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.