1

enable scheduling

This commit is contained in:
churl
2022-06-05 16:51:27 +02:00
parent 951185bccc
commit 8153375321

View File

@ -11,9 +11,6 @@
*****************************************************************************/ *****************************************************************************/
#include "kernel/Globals.h" #include "kernel/Globals.h"
#include "user/CoroutineDemo.h"
const CoroutineDemo coroutineDemo;
int main() { int main() {
kout.clear(); kout.clear();
@ -51,7 +48,10 @@ int main() {
// keyboard_demo(); // keyboard_demo();
// heap_demo(); // heap_demo();
// key_irq_demo(); // key_irq_demo();
coroutineDemo.main(); // coroutineDemo.main();
// Scheduler starten (schedule() erzeugt den Idle-Thread)
scheduler.schedule();
return 0; return 0;
} }