Rework line 2. Add placeholder for a dual temperature display (Actual/Max). Paging mode will move to line 7

This commit is contained in:
Sam Demeulemeester 2022-04-07 02:04:29 +02:00 committed by Sam Demeulemeester
parent 5f92ff1a64
commit 272f1ce4f6
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ void display_init(void)
set_foreground_colour(WHITE);
set_background_colour(BLUE);
prints(0,28, "| ");
prints(1, 0, "CPU : N/A | Pass % ");
prints(1, 0, "CLK/Temp: N/A | Pass % ");
prints(2, 0, "L1 Cache: N/A | Test % ");
prints(3, 0, "L2 Cache: N/A | Test # ");
prints(4, 0, "L3 Cache: N/A | Testing: ");

View File

@ -146,7 +146,7 @@
printf(7, 47, "%i:%02i:%02i", hours, mins, secs)
#define display_temperature(temp) \
printf(7, 71, "%2i%cC ", temp, 0xf8)
printf(1, 20, "%2i/%2i%cC", temp, temp, 0xf8)
#define display_pass_count(count) \
printi(8, 47, count, 0, false, true)