diff --git a/esp32s3-lockup/go.mod b/esp32s3-lockup/go.mod deleted file mode 100644 index eac248c..0000000 --- a/esp32s3-lockup/go.mod +++ /dev/null @@ -1,3 +0,0 @@ -module esp32s3lockup - -go 1.26.2 \ No newline at end of file diff --git a/esp32s3-lockup/main.go b/esp32s3-lockup/main.go deleted file mode 100644 index f4e8389..0000000 --- a/esp32s3-lockup/main.go +++ /dev/null @@ -1,35 +0,0 @@ -package main - -import ( - "machine" - "time" -) - -func main() { - time.Sleep(3 * time.Second) - - led := machine.GPIO37 - led.Configure(machine.PinConfig{Mode: machine.PinOutput}) - - txDone := true - count := 0 - - processingCount := 0 - for { - if txDone { - txDone = false - led.Set(false) - time.Sleep(249 * time.Millisecond) - led.Set(true) - println("hello world", count) - count += 1 - } else { - if processingCount > 100000000 { - txDone = true - println("stall done") - processingCount = 0 - } - processingCount += 1 - } - } -}