diagdummy Simple dummy app for diagnostics and debugging

This commit is contained in:
2025-09-20 12:25:02 +02:00
parent a8005917eb
commit a24b1fc677
5 changed files with 56 additions and 0 deletions

7
user/diagdummy/block.c Normal file
View File

@ -0,0 +1,7 @@
#include <ulib.h>
void diagdummy_block(void) {
uprintf("blocking...\n");
while(1) {
}
}