This commit is contained in:
2025-12-03 05:50:05 +01:00
parent 246a5bc3e6
commit a4bf6ab8c8
4 changed files with 13 additions and 3 deletions

View File

@@ -25,8 +25,10 @@ void Application::action() { // NOLINT
char text[] = "testX";
text[4] = 0x30+id;
for (unsigned i = 0;; ++i) {
for (unsigned i = 1;; ++i) {
write(0, text, sizeof(text));
if(i==id)
sys_exit();
sleep(1000);
}
}