Spaceshot Flight Software
The Illinois Space Society's Homemade Rocket Firmware
thresholds.h
Go to the documentation of this file.
1 
7 #ifndef THRESHOLDS_H
8 #define THRESHOLDS_H
9 
10 // Transition from boost to coast if low accleration detected for 300 ms
11 static const float coast_time_thresh = 300;
12 
13 // transition from coast to apogee if low velocity detected for 100ms
14 static const float apogee_time_thresh = 100;
15 
16 static const float landing_time_thresh = 1000;
17 
18 // 2 gs for launch detect
19 static const float launch_linear_acceleration_thresh = 3;
20 
21 // Required time of detected acceleration to switch to boost
22 static const float launch_time_thresh = 250;
23 
24 // If we observe less than 0.5 g of accel, transition to coast
25 static const float coast_thresh = 0.5;
26 
27 // Switch to apogee state after 40 seconds
28 static const float coast_to_apogee_time_thresh = 26300;
29 
30 // For preventing GNC flaps from actuating even when in coast state
31 static const float coast_ac_delay_thresh = 1000;
32 
33 // Rocket will leave boost state when burn_timer has exceeded this limit
34 static const int burn_time_thresh_ms = 5200;
35 
36 // how small the difference in altimeter data can be before it detects apogee
37 static const float apogee_altimeter_threshold = 0.5;
38 
39 // some number greater than 0 to represent a drastic change in acceleration
40 // being detected to put us into drogue:
41 static const float drogue_acceleration_change_threshold_imu = 0.15;
42 
43 static const float drogue_acceleration_change_threshold_altimeter = 10.01;
44 
45 // some number greater than 0 to represent a drastic change in acceleration
46 // being detected to put us into main:
47 static const float main_acceleration_change_threshold_imu = 1.53;
48 
49 static const float main_acceleration_change_threshold_altimeter = 25.02;
50 
51 // how long before we force droge deploy
52 static const float drogue_deploy_time_since_apogee_threshold = 10000;
53 
54 // how long before we force main deploy
55 static const float main_deploy_time_since_drogue_threshold = 105000;
56 
57 // how large the change in altitude has to be to detect landing:
58 static const float landing_altimeter_threshold = .5;
59 
60 // how long we wait to let the buffers cycle
61 static const float refresh_timer = 500;
62 
63 #endif