most functionality to splashdwon, find neutral and start mission. short timeouts still in code for testing, will adjust to go directly to sit_idle after splashdown

Dependencies:   mbed MODSERIAL FATFileSystem

Committer:
tnhnrl
Date:
Wed Dec 20 13:52:50 2017 +0000
Revision:
32:f2f8ae34aadc
Parent:
31:8616e397c22d
Child:
34:9b66c5188051
revA

Who changed what in which revision?

UserRevisionLine numberNew contents of line
danstrider 10:085ab7328054 1 /*
tnhnrl 24:c7d9b5bf3829 2 Modified 2017-11-29 revA by Troy
tnhnrl 24:c7d9b5bf3829 3 - changelog.txt carries previous changes
tnhnrl 24:c7d9b5bf3829 4 - Incorporated email changes and did quick bench test
tnhnrl 28:16c83a2fdefa 5 1) In FIND_NEUTRAL, add bce().setPosition_mm(bceFloatPosition) to the one-shot actions after the unpause().
tnhnrl 28:16c83a2fdefa 6 2) NEUTRAL_FIRST_PITCH, changed batt position by half from 1.0 to 0.5.
tnhnrl 28:16c83a2fdefa 7 3) NEUTRAL_SINKING and NEUTRAL_SLOWLY_RISE are using getSetPosition now
tnhnrl 28:16c83a2fdefa 8 4) previousPosition_mm deleted (and print statements changed)
tnhnrl 28:16c83a2fdefa 9 5) NEUTRAL_SLOWLY_RISE check is using bce().getSetPosition_mm()
tnhnrl 28:16c83a2fdefa 10 6) Timers replaced with _neutral_timer variable
tnhnrl 28:16c83a2fdefa 11 7) Default timeout is 8 minutes = 480 seconds
tnhnrl 24:c7d9b5bf3829 12 - Redid the sub-state recording method to only update on state changes
tnhnrl 27:0a5b90cd65d6 13 Modified 2017-11-29 revB by Troy
tnhnrl 27:0a5b90cd65d6 14 - minor print fixes
tnhnrl 28:16c83a2fdefa 15 Modified 2017-11-29 revC by Troy
tnhnrl 28:16c83a2fdefa 16 - removed depthTolerance variable that was not being used.
tnhnrl 28:16c83a2fdefa 17 Modified 2017-11-30 revA by Troy/Dan
tnhnrl 28:16c83a2fdefa 18 - Modified state RISE to setCommand to -1.0 feet (force out of water) and go to next state (float level) when above 0.5 feet
tnhnrl 28:16c83a2fdefa 19 - Modified sub-state NEUTRAL_SINKING to only move 2.5 mm per cycle instead of 5 mm
tnhnrl 28:16c83a2fdefa 20 - Commented out home function (accidentally hit home and got stuck while at LASR)
tnhnrl 28:16c83a2fdefa 21 - Added max depth neutral and dive variables
tnhnrl 28:16c83a2fdefa 22 - Print max recorded depths and current neutral buoyancy positions
tnhnrl 28:16c83a2fdefa 23 Modified 2017-11-30 revB by Troy/Dan
tnhnrl 28:16c83a2fdefa 24 - Dive and Multi-Dive cycles now exit to FLOAT_BROADCAST state
tnhnrl 28:16c83a2fdefa 25 - FLOAT_LEVEL pitchTolerance variable increased from 1.0 degree to 5.0 degrees (PV was difficult to level in LASR pool)
tnhnrl 28:16c83a2fdefa 26 - Added the ability to record the states of the FSM and print to user using keyboard "Z"
tnhnrl 28:16c83a2fdefa 27 Modified 2017-12-01 revA by Troy
tnhnrl 28:16c83a2fdefa 28 - Minor update to 2017-11-30 revB
tnhnrl 28:16c83a2fdefa 29 - Now printing current neutral battery and BCE setpoints and max depth in neutral and dive cycle with "C" (and current sensor data)
tnhnrl 28:16c83a2fdefa 30 - Pool-tested with successful dives.
tnhnrl 28:16c83a2fdefa 31 1) Dive working correctly. (And max dive tracker shows that it is reaching the correct commanded depth.)
tnhnrl 28:16c83a2fdefa 32 2) Float broadcast working correctly. (And we are now going directly from dive and rise to float broadcast.)
tnhnrl 28:16c83a2fdefa 33 3) Neutral sequence has PV diving with -10 to -20 degrees of pitch, battery command seems to be slow or inactive.
tnhnrl 28:16c83a2fdefa 34 3) Float broadcast working correctly.
tnhnrl 28:16c83a2fdefa 35 4) FSM tracker and sub-FSM tracker working.
tnhnrl 28:16c83a2fdefa 36 5) Antenna working until tail just under water (last depth recorded varies between 1.0 and 1.5 feet)
tnhnrl 30:2964617e7676 37 Modified 2017-12-06 revA by Troy
tnhnrl 30:2964617e7676 38 - Added "_isTimeoutRunning = false;" to the FIND_NEUTRAL successful exit case ("else if (runNeutralStateMachine() == NEUTRAL_EXIT)"
tnhnrl 30:2964617e7676 39 1) This will reset the timeout when the PV has successfully found and saved the neutral BCE and battery positions
tnhnrl 30:2964617e7676 40 - Successful dive and multi-dive sequences exit to FLOAT_BROADCAST state (fix was implemented in code that did not respond, reimplemented here)
tnhnrl 30:2964617e7676 41 1) Also made the change to the SequenceController (which loads a file that has multiple sequences)
tnhnrl 31:8616e397c22d 42 - FIND_NEUTRAL starts in NEUTRAL_SINKING with fix on sub-FSM to start with NEUTRAL_SINKING (verified via mbed on bench)
tnhnrl 32:f2f8ae34aadc 43 Modified 2017-12-07 revA by Troy
tnhnrl 32:f2f8ae34aadc 44 - Using new neutral finding sequence, dive slowly, rise slowly, then check pitch (pitch is not active at all until final state)
tnhnrl 32:f2f8ae34aadc 45 - Added additional print information (showing neutral parameters with "C")
tnhnrl 32:f2f8ae34aadc 46 Modified 2017-12-07 revB by Troy
tnhnrl 32:f2f8ae34aadc 47 - Momentum offsets reintroduced:
tnhnrl 32:f2f8ae34aadc 48 1) CASE DIVE uses "else if (depthLoop().getPosition() > depthLoop().getCommand() - 0.5) { // including offset for low momentum approaches"
tnhnrl 32:f2f8ae34aadc 49 2) CASE RISE uses "else if (depthLoop().getPosition() < depthLoop().getCommand() + 0.5) { // including offset for low momentum approaches"
tnhnrl 32:f2f8ae34aadc 50 - Momentum on rise command does not exit properly, removed
tnhnrl 32:f2f8ae34aadc 51 Modified 2017-12-11 revA by Troy
tnhnrl 32:f2f8ae34aadc 52 - Added a logger function the main while loop
tnhnrl 32:f2f8ae34aadc 53 - Added vectors (essentially resizable arrays) to hold the data in the State Machine because of memory limitations
tnhnrl 32:f2f8ae34aadc 54 Modified 2017-12-12 revA by Troy
tnhnrl 32:f2f8ae34aadc 55 - Logger directly implemented in StateMachine (records every 5 seconds)
tnhnrl 32:f2f8ae34aadc 56 Modified 2017-12-12 revB by Troy
tnhnrl 32:f2f8ae34aadc 57 - Logger fixes implemented in StateMachine, was not logging each state, fixed the reset
tnhnrl 32:f2f8ae34aadc 58 - Made logger into a function call
tnhnrl 32:f2f8ae34aadc 59 Modified 2017-12-13 revA by Troy
tnhnrl 32:f2f8ae34aadc 60 - Added function to print log file to screen (tested on bench with multiple dives and timers)
tnhnrl 32:f2f8ae34aadc 61 Modified 2017-12-18 revA by Troy
tnhnrl 32:f2f8ae34aadc 62 - Redo of the code to stop opening and closing files each time
tnhnrl 32:f2f8ae34aadc 63 - This should allow you to write to the open file, then close it once you exit the sequence back to SIT_IDLE
tnhnrl 32:f2f8ae34aadc 64 - Start record in dive, end when you exit float broadcast...
tnhnrl 32:f2f8ae34aadc 65 Modified 2017-12-19 revA by Troy
tnhnrl 32:f2f8ae34aadc 66 - Fixed OpenLog printing to include states and variable names. Currently logs to LOG#####.TXT files
tnhnrl 32:f2f8ae34aadc 67 1) Note: The OpenLog only starts a new log when it is power-cycled (with the MBED)
tnhnrl 32:f2f8ae34aadc 68 Modified 2017-12-20 rev A by Troy
tnhnrl 32:f2f8ae34aadc 69 - Modified code to log every 1 second in current iteration
danstrider 10:085ab7328054 70 */
tnhnrl 20:8987a9ae2bc7 71
tzyoung 0:ea293bbf9717 72 #include "mbed.h"
tzyoung 0:ea293bbf9717 73 #include "StaticDefs.hpp"
tnhnrl 20:8987a9ae2bc7 74
tnhnrl 32:f2f8ae34aadc 75 // loop rate used to determine how fast events trigger in the while loop
tnhnrl 20:8987a9ae2bc7 76 Ticker loop_rate_ticker;
tnhnrl 32:f2f8ae34aadc 77
tnhnrl 32:f2f8ae34aadc 78 volatile bool loop = false; //used so the compiler does not optimize this variable (load from memory, do not assume state of variable)
tnhnrl 32:f2f8ae34aadc 79
tnhnrl 32:f2f8ae34aadc 80 void loop_trigger() { loop = true;} // loop trigger (used in while loop)
tnhnrl 32:f2f8ae34aadc 81 //void log_loop_trigger() { log_loop = true;} // log loop trigger (used in while loop)
tnhnrl 32:f2f8ae34aadc 82
tnhnrl 32:f2f8ae34aadc 83
danstrider 10:085ab7328054 84 void setup() {
danstrider 11:3b241ecb75ed 85 pc().baud(57600);
tnhnrl 32:f2f8ae34aadc 86 pc().printf("\n\n\rFSG POOL TEST 2017-12-20 revA (DESKTOP SAVE TEST)\n\n\r");
tnhnrl 32:f2f8ae34aadc 87
tnhnrl 32:f2f8ae34aadc 88 //setup data logger baud rate and write the start of the program (every time you reset)
tnhnrl 32:f2f8ae34aadc 89 datalogger().baud(57600);
tnhnrl 32:f2f8ae34aadc 90 datalogger().printf("DATA, LOGGER, START\n");
tnhnrl 20:8987a9ae2bc7 91
danstrider 10:085ab7328054 92 // start up the system timer
tzyoung 0:ea293bbf9717 93 systemTime().start();
tnhnrl 20:8987a9ae2bc7 94
danstrider 10:085ab7328054 95 // set up and start the adc. This runs on a fixed interval and is interrupt driven
tzyoung 0:ea293bbf9717 96 adc().initialize();
tzyoung 0:ea293bbf9717 97 adc().start();
danstrider 10:085ab7328054 98
danstrider 10:085ab7328054 99 // set up and start the imu. This polls in the background
danstrider 10:085ab7328054 100 imu().initialize();
danstrider 10:085ab7328054 101 imu().start();
danstrider 10:085ab7328054 102
danstrider 10:085ab7328054 103 // set up the depth sensor. This is an internal ADC read, but eventually will be on the ltc1298
danstrider 14:85b64a4d08e8 104 depth().init();
danstrider 14:85b64a4d08e8 105 depth().tare();
danstrider 10:085ab7328054 106
danstrider 10:085ab7328054 107 // construct a local file system
danstrider 10:085ab7328054 108 local();
tnhnrl 20:8987a9ae2bc7 109
danstrider 10:085ab7328054 110 // load config data from files
tnhnrl 21:38c8544db6f4 111 configFileIO().load_BCE_config(); // load the buoyancy engine parameters from the file "bce.txt"
tnhnrl 21:38c8544db6f4 112 configFileIO().load_BATT_config(); // load the battery mass mover parameters from the file "batt.txt"
tnhnrl 21:38c8544db6f4 113 configFileIO().load_DEPTH_config(); // load the depth control loop parameters from the file "depth.txt" (contains neutral position)
tnhnrl 21:38c8544db6f4 114 configFileIO().load_PITCH_config(); // load the depth control loop parameters from the file "pitch.txt" (contains neutral position)
tnhnrl 20:8987a9ae2bc7 115
danstrider 10:085ab7328054 116 // set up the linear actuators. adc has to be running first.
danstrider 10:085ab7328054 117 bce().init();
danstrider 10:085ab7328054 118 bce().start();
mkelly10 12:a0519d11d2b6 119 bce().pause(); // start by not moving
tnhnrl 20:8987a9ae2bc7 120
danstrider 10:085ab7328054 121 batt().init();
tzyoung 2:892b58e56712 122 batt().start();
mkelly10 12:a0519d11d2b6 123 batt().pause(); // start by not moving
tnhnrl 20:8987a9ae2bc7 124
danstrider 10:085ab7328054 125 // set up the depth and pitch outer loop controllers
danstrider 10:085ab7328054 126 depthLoop().init();
tnhnrl 13:84fcbe1dcd62 127 depthLoop().start();
tnhnrl 16:3363b9f14913 128 depthLoop().setCommand(stateMachine().getDepthCommand());
tnhnrl 20:8987a9ae2bc7 129
danstrider 10:085ab7328054 130 pitchLoop().init();
tnhnrl 13:84fcbe1dcd62 131 pitchLoop().start();
tnhnrl 16:3363b9f14913 132 pitchLoop().setCommand(stateMachine().getPitchCommand());
tnhnrl 20:8987a9ae2bc7 133
tnhnrl 20:8987a9ae2bc7 134 // show that the PID gains are loading from the file
tnhnrl 21:38c8544db6f4 135 pc().printf("bce P:%6.2f, I:%6.2f, D:%6.2f, zero %3i, limit %3.0f mm, slope %3.3f \r\n", bce().getControllerP(), bce().getControllerI(), bce().getControllerD(), bce().getZeroCounts(), bce().getTravelLimit(), bce().getPotSlope());
tnhnrl 21:38c8544db6f4 136 pc().printf("batt P:%6.2f, I:%6.2f, D:%6.2f, zero %3i, limit %3.0f mm, slope %3.3f \r\n", batt().getControllerP(), batt().getControllerI(), batt().getControllerD(), batt().getZeroCounts(), batt().getTravelLimit(), batt().getPotSlope());
tnhnrl 21:38c8544db6f4 137 pc().printf("depth P:%6.2f, I:%6.2f, D:%6.2f, offset:%6.1f mm \r\n", depthLoop().getControllerP(), depthLoop().getControllerI(), depthLoop().getControllerD(), depthLoop().getOutputOffset());
tnhnrl 21:38c8544db6f4 138 pc().printf("pitch P:%6.2f, I:%6.2f, D:%6.2f, offset:%6.1f mm \r\n", pitchLoop().getControllerP(), pitchLoop().getControllerI(), pitchLoop().getControllerD(), pitchLoop().getOutputOffset());
danstrider 10:085ab7328054 139 pc().printf("\n\r");
tnhnrl 21:38c8544db6f4 140
tnhnrl 17:7c16b5671d0e 141 //load sequence from file
tnhnrl 17:7c16b5671d0e 142 sequenceController().loadSequence();
tnhnrl 20:8987a9ae2bc7 143
tnhnrl 20:8987a9ae2bc7 144 // establish the main loop rate
tnhnrl 20:8987a9ae2bc7 145 loop_rate_ticker.attach(&loop_trigger, 0.1); // fires the ticker at 10 Hz rate
tnhnrl 32:f2f8ae34aadc 146
tnhnrl 32:f2f8ae34aadc 147 // setup the data logger rate
tnhnrl 32:f2f8ae34aadc 148 // loop_log_rate_ticker.attach(&loop_log_trigger, 5.0); // fires the ticker at 0.2 Hz rate (every 5 seconds)
tnhnrl 32:f2f8ae34aadc 149
tnhnrl 21:38c8544db6f4 150 }
tnhnrl 20:8987a9ae2bc7 151
danstrider 10:085ab7328054 152 int main() {
danstrider 10:085ab7328054 153 setup();
tnhnrl 16:3363b9f14913 154
danstrider 10:085ab7328054 155 while(1) {
tnhnrl 32:f2f8ae34aadc 156 // runs at 10 hz
tnhnrl 20:8987a9ae2bc7 157 if(loop) {
tnhnrl 32:f2f8ae34aadc 158 led1() = !led1(); // blink led 1
tnhnrl 20:8987a9ae2bc7 159 stateMachine().runStateMachine();
tnhnrl 20:8987a9ae2bc7 160 loop = false; // wait until the loop rate timer fires again
tnhnrl 17:7c16b5671d0e 161 }
tnhnrl 32:f2f8ae34aadc 162
tnhnrl 32:f2f8ae34aadc 163 // if (log_loop) {
tnhnrl 32:f2f8ae34aadc 164 // led3() = !led3(); // blink led 3
tnhnrl 32:f2f8ae34aadc 165 // datalogger().printf("");
tnhnrl 32:f2f8ae34aadc 166 // log_loop = false; // wait until the loop rate timer fires again
tnhnrl 32:f2f8ae34aadc 167 // }
danstrider 10:085ab7328054 168 }
danstrider 10:085ab7328054 169 }