Skip to content

Commit

Permalink
timing is repeatable as a target now
Browse files Browse the repository at this point in the history
  • Loading branch information
David Bryan committed Aug 6, 2022
1 parent 0ab9bba commit 88fdd10
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions RP2040-Glitch/RP2040-Glitch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ void setup() {

void loop()
{
#define RUN_CNT 5000
#define OUTER_LOOP_CNT 1000
#define INNER_LOOP_CNT 1000
#define RUN_CNT 500
#define OUTER_LOOP_CNT 900
#define INNER_LOOP_CNT 900

//Serial.print("Booting into for loop...\n");
//Serial.print("Booting into for loop...\n");
Expand Down Expand Up @@ -94,10 +94,10 @@ void loop()
{
digitalWrite(LED_BUILTIN, HIGH);
digitalWrite(GREEN_LED, HIGH);
delay(400);
delay(200);
digitalWrite(LED_BUILTIN, LOW);
digitalWrite(GREEN_LED, LOW);
delay(400);
delay(200);
}
run_cnt = 0;
digitalWrite(GLITCH_SIG, LOW);
Expand Down

0 comments on commit 88fdd10

Please sign in to comment.