diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-04 08:02:08 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-04 08:02:08 +0100 |
commit | 266f97c83e6491acb18acf6d10dd018b4713642c (patch) | |
tree | b605df7ffd057965eeb4ec35e6e8fddf28554425 | |
parent | 2d49d59ba1335ed28cfdd7fc586be4e1637ebe9c (diff) |
prototest: loop indefinitely on all architectures but esp8266
-rw-r--r-- | src/app/prototest/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/prototest/main.cc b/src/app/prototest/main.cc index 13f52e7..07f6ac0 100644 --- a/src/app/prototest/main.cc +++ b/src/app/prototest/main.cc @@ -77,7 +77,7 @@ int main(void) //gpio.led_on(0); kout << "Hello, World!" << endl; -#if defined(PROTOTEST_BENCH_CYCLES) and (defined(MULTIPASS_ARCH_arduino_nano) or defined(MULTIPASS_ARCH_msp430fr5969lp)) +#if defined(PROTOTEST_BENCH_CYCLES) and !defined(PROTOTEST_ARCH_esp8266) while (1) { loop(); } |