mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-08 19:30:39 +00:00
Finalised visuals for part10
This commit is contained in:
parent
89f33b4b83
commit
c721e6405f
1 changed files with 5 additions and 4 deletions
|
@ -211,20 +211,21 @@ void core2_main(void)
|
|||
if (core2_val < 100) core2_val++;
|
||||
}
|
||||
debugstr("done");
|
||||
|
||||
drawProgress(2, 100);
|
||||
}
|
||||
|
||||
void core1_main(void)
|
||||
{
|
||||
unsigned int core1_val = 0;
|
||||
|
||||
clear_core1(); // Only run once
|
||||
|
||||
drawProgress(1, 50);
|
||||
|
||||
debugstr("Playing on CPU Core #1... ");
|
||||
playaudio_cpu();
|
||||
debugstr("done"); debugcrlf();
|
||||
|
||||
core1_val = 100;
|
||||
drawProgress(1, core1_val);
|
||||
drawProgress(1, 100);
|
||||
|
||||
start_core2(core2_main); // Kick it off on core 2
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue