diff options
-rw-r--r-- | src/tests/test.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/tests/test.c b/src/tests/test.c index af906cc..c4abb3e 100644 --- a/src/tests/test.c +++ b/src/tests/test.c @@ -61,15 +61,14 @@ void btest(void) { if (testi % 3 == 0) { testi++; - ctest1(); + add_thread(ctest1, 0, 1); } else if (testi % 3 == 1) { testi++; - ctest2(); + add_thread(ctest2, 0, 0); } else if (testi % 3 == 2) { testi++; - ctest3(); + add_thread(ctest3, 0, 1); } - uart_hexn(&testm); } |