diff --git a/misc/mp_repl_experiment.py b/misc/mp_repl_experiment.py index fb7847c1b..1119a04cb 100644 --- a/misc/mp_repl_experiment.py +++ b/misc/mp_repl_experiment.py @@ -6,7 +6,7 @@ MODE = "paste" # "paste" or "raw" BLOCK_SIZE = 256 LENGTH_OF_STRING_LITERAL = 1000 # affects the size of the script sent to the device -NUM_ITERATIONS = 100 # how many times to send the script to the device +NUM_ITERATIONS = 10000 # how many times to send the script to the device # The output of following code tells me whether the code was received intact or not code = """ @@ -80,6 +80,7 @@ def run_in_paste_mode(): start_raw_mode() for i in range(NUM_ITERATIONS): + print("Iteration", i) if MODE == "raw": run_in_raw_mode() else: