Skip to content

Commit

Permalink
add more mission constants
Browse files Browse the repository at this point in the history
  • Loading branch information
mdb15106 committed Nov 11, 2020
1 parent 1be5865 commit a09f836
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/mission_constants.hh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,29 @@ const float LSB_ANGULAR = 131.0; // (deg/s/LSB) note documentation gives incorr
/* These bias calibration values account for sensor bias
* in linear acceleration measurements.
*/
// TODO: add offset vars

// LEDs
const int B_LED_1 = 6; // TODO: add description
const int G_LED_1 = 4; // TODO: add description
const int B_LED_2 = 9; // TODO: add description
const int G_LED_2 = 8; // TODO: add description

// Pyro TODO: more descriptive name?
const into PYRO_PIN = 22; // TODO: add description

// Thrust-Vector Controller (TVC)
const int TVC_TOP_PIN = 5; // TODO: add description
const int TVC_X_PIN = 20; // TODO: add description
const int TVC_Y_PIN = 21; // TODO: add description

const int TVC_X_OFFSET = 85; // TODO: add description
const int TVC_Y_OFFSET = 83; // TODO: add description

const float BETA = 0.95; // TODO: add description
const int GEAR = 9; // TODO: add description
const float DAMPER = 1.5; // TODO: add description
const int TVC_DELAY = 10; // TODO: add description


// TODO: define these quaternions based on IMU installation in rocket
Expand Down

0 comments on commit a09f836

Please sign in to comment.