Skip to content

Commit

Permalink
removed remove before flights
Browse files Browse the repository at this point in the history
  • Loading branch information
tylermnielsen committed Nov 22, 2024
1 parent f9bcd0e commit 956b38f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ascendfsw/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ void setup() {

// start serial
Serial.begin(115200);
while (!Serial) // remove before flight
;
// while (!Serial) // remove before flight
// ;

// setup heartbeat pins
pinMode(HEARTBEAT_PIN_0, OUTPUT);
Expand Down Expand Up @@ -174,7 +174,7 @@ void loop() {
// store csv row
storeData(csv_row);

delay(500); // remove before flight
//delay(500); // remove before flight
digitalWrite(ON_BOARD_LED_PIN, (it & 0x1)); // toggle light with iteration
}

Expand Down

0 comments on commit 956b38f

Please sign in to comment.