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 06 22:45:23 2017 +0000
Revision:
31:8616e397c22d
Parent:
30:2964617e7676
Child:
32:f2f8ae34aadc
Changes to notes

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)
danstrider 10:085ab7328054 43 */
tnhnrl 20:8987a9ae2bc7 44
tzyoung 0:ea293bbf9717 45 #include "mbed.h"
tzyoung 0:ea293bbf9717 46 #include "StaticDefs.hpp"
tnhnrl 20:8987a9ae2bc7 47
tnhnrl 20:8987a9ae2bc7 48 // loop rate timer for slowing down how fast while(1) runs in main()
tnhnrl 20:8987a9ae2bc7 49 Ticker loop_rate_ticker;
tnhnrl 20:8987a9ae2bc7 50 volatile bool loop = false;
tnhnrl 20:8987a9ae2bc7 51 void loop_trigger() { loop = true; }; // loop trigger
tnhnrl 20:8987a9ae2bc7 52
danstrider 10:085ab7328054 53 void setup() {
danstrider 11:3b241ecb75ed 54 pc().baud(57600);
tnhnrl 28:16c83a2fdefa 55 pc().printf("\n\n\rFSG POOL TEST 2017-12-01 revA\n\n\r");
tnhnrl 20:8987a9ae2bc7 56
danstrider 10:085ab7328054 57 // start up the system timer
tzyoung 0:ea293bbf9717 58 systemTime().start();
tnhnrl 20:8987a9ae2bc7 59
danstrider 10:085ab7328054 60 // set up and start the adc. This runs on a fixed interval and is interrupt driven
tzyoung 0:ea293bbf9717 61 adc().initialize();
tzyoung 0:ea293bbf9717 62 adc().start();
danstrider 10:085ab7328054 63
danstrider 10:085ab7328054 64 // set up and start the imu. This polls in the background
danstrider 10:085ab7328054 65 imu().initialize();
danstrider 10:085ab7328054 66 imu().start();
danstrider 10:085ab7328054 67
danstrider 10:085ab7328054 68 // set up the depth sensor. This is an internal ADC read, but eventually will be on the ltc1298
danstrider 14:85b64a4d08e8 69 depth().init();
danstrider 14:85b64a4d08e8 70 depth().tare();
danstrider 10:085ab7328054 71
danstrider 10:085ab7328054 72 // construct a local file system
danstrider 10:085ab7328054 73 local();
tnhnrl 20:8987a9ae2bc7 74
danstrider 10:085ab7328054 75 // load config data from files
tnhnrl 21:38c8544db6f4 76 configFileIO().load_BCE_config(); // load the buoyancy engine parameters from the file "bce.txt"
tnhnrl 21:38c8544db6f4 77 configFileIO().load_BATT_config(); // load the battery mass mover parameters from the file "batt.txt"
tnhnrl 21:38c8544db6f4 78 configFileIO().load_DEPTH_config(); // load the depth control loop parameters from the file "depth.txt" (contains neutral position)
tnhnrl 21:38c8544db6f4 79 configFileIO().load_PITCH_config(); // load the depth control loop parameters from the file "pitch.txt" (contains neutral position)
tnhnrl 20:8987a9ae2bc7 80
danstrider 10:085ab7328054 81 // set up the linear actuators. adc has to be running first.
danstrider 10:085ab7328054 82 bce().init();
danstrider 10:085ab7328054 83 bce().start();
mkelly10 12:a0519d11d2b6 84 bce().pause(); // start by not moving
tnhnrl 20:8987a9ae2bc7 85
danstrider 10:085ab7328054 86 batt().init();
tzyoung 2:892b58e56712 87 batt().start();
mkelly10 12:a0519d11d2b6 88 batt().pause(); // start by not moving
tnhnrl 20:8987a9ae2bc7 89
danstrider 10:085ab7328054 90 // set up the depth and pitch outer loop controllers
danstrider 10:085ab7328054 91 depthLoop().init();
tnhnrl 13:84fcbe1dcd62 92 depthLoop().start();
tnhnrl 16:3363b9f14913 93 depthLoop().setCommand(stateMachine().getDepthCommand());
tnhnrl 20:8987a9ae2bc7 94
danstrider 10:085ab7328054 95 pitchLoop().init();
tnhnrl 13:84fcbe1dcd62 96 pitchLoop().start();
tnhnrl 16:3363b9f14913 97 pitchLoop().setCommand(stateMachine().getPitchCommand());
tnhnrl 20:8987a9ae2bc7 98
tnhnrl 20:8987a9ae2bc7 99 // show that the PID gains are loading from the file
tnhnrl 21:38c8544db6f4 100 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 101 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 102 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 103 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 104 pc().printf("\n\r");
tnhnrl 21:38c8544db6f4 105
tnhnrl 17:7c16b5671d0e 106 //load sequence from file
tnhnrl 17:7c16b5671d0e 107 sequenceController().loadSequence();
tnhnrl 20:8987a9ae2bc7 108
tnhnrl 20:8987a9ae2bc7 109 // establish the main loop rate
tnhnrl 20:8987a9ae2bc7 110 loop_rate_ticker.attach(&loop_trigger, 0.1); // fires the ticker at 10 Hz rate
tnhnrl 21:38c8544db6f4 111 }
tnhnrl 20:8987a9ae2bc7 112
danstrider 10:085ab7328054 113 int main() {
danstrider 10:085ab7328054 114 setup();
tnhnrl 16:3363b9f14913 115
danstrider 10:085ab7328054 116 while(1) {
tnhnrl 20:8987a9ae2bc7 117 // does this stuff at the loop rate
tnhnrl 20:8987a9ae2bc7 118 if(loop) {
tnhnrl 20:8987a9ae2bc7 119 led1() = !led1(); // blink
tnhnrl 20:8987a9ae2bc7 120 stateMachine().runStateMachine();
tnhnrl 20:8987a9ae2bc7 121 loop = false; // wait until the loop rate timer fires again
tnhnrl 17:7c16b5671d0e 122 }
danstrider 10:085ab7328054 123 }
danstrider 10:085ab7328054 124 }