From a5ff1e5be290d295e0c94eba7b73bae949ea32b2 Mon Sep 17 00:00:00 2001 From: Amelia Coutard Date: Mon, 7 Aug 2023 03:21:30 +0200 Subject: [PATCH] Made my life easier: removed infinite printing in test programs --- test_module/src/test.cpp | 2 +- test_module_2/src/test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test_module/src/test.cpp b/test_module/src/test.cpp index 3e545d9..b2973ec 100644 --- a/test_module/src/test.cpp +++ b/test_module/src/test.cpp @@ -31,6 +31,6 @@ extern "C" void _start() { while (true) { yield(); - printstr("Prg 1 again.\n"); + // printstr("Prg 1 again.\n"); } } diff --git a/test_module_2/src/test.cpp b/test_module_2/src/test.cpp index f4d1791..7eeb486 100644 --- a/test_module_2/src/test.cpp +++ b/test_module_2/src/test.cpp @@ -27,7 +27,7 @@ extern "C" void _start() { while (true) { yield(); - printstr("Prog 2 again.\n"); + // printstr("Prog 2 again.\n"); } } -- 2.47.0