Skip to content

Commit

Permalink
Update schedule to work with new start stage
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminwp18 committed Jun 15, 2024
1 parent e441657 commit 1ce0bff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/float/float_transceiver/float_transceiver.ino
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const uint32_t ASCEND_TIME = 0; // Disable ascend times now that we're properly
const uint32_t TX_MAX = 60000;
const uint32_t ONE_HOUR = 360000;

const uint8_t SCHEDULE_LENGTH = 11;
const uint8_t SCHEDULE_LENGTH = 12;

enum class StageType { WaitDeploying, WaitTransmitting, WaitProfiling, Suck, Pump };
enum class OverrideState { NoOverride, Stop, Suck, Pump };
Expand Down Expand Up @@ -132,6 +132,9 @@ void setup() {

initRadio();
initPressureSensor();

// Start our first stage by pumping
pump();
}

void loop() {
Expand Down

0 comments on commit 1ce0bff

Please sign in to comment.