Generate docs for libs, update docs build process
All checks were successful
Build documentation / build-and-deploy (push) Successful in 1m18s

This commit is contained in:
2026-02-13 00:23:15 +01:00
parent 6dd1d3ff1e
commit 360080b44e
25 changed files with 119 additions and 54 deletions

View File

@@ -18,7 +18,10 @@ void app_proc (void) {
mutex_lock (MUTEX);
for (int i = 0; i < 3; i++)
test (letter);
terminal_print (&letter, 1);
for (volatile int i = 0; i < 1000*1000; i++)
;
mutex_unlock (MUTEX);
}
@@ -38,10 +41,11 @@ void app_main (void) {
for (;;) {
mutex_lock (MUTEX);
for (int i = 0; i < 3; i++) {
terminal_print ("hello\n", 6);
}
/* test (letter); */
for (int i = 0; i < 3; i++)
terminal_print (&letter, 1);
for (volatile int i = 0; i < 1000*1000; i++)
;
mutex_unlock (MUTEX);
}