refactor main and irqmgr

This commit is contained in:
Prakxo
2023-08-03 00:16:21 +02:00
parent ff9bf7e84f
commit fd35cf0e9b
13 changed files with 77 additions and 18 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef SETTHREADPRI_H
#define SETTHREADPRI_H
#include "types.h"
#include "libultra/osThread.h"
#ifdef __cplusplus
extern "C" {
#endif
void osSetThreadPri(OSThread* thread, OSPri priority);
#ifdef __cplusplus
}
#endif
#endif