Zadania rekrutacyjne i ćwiczeniowe
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "infrastructure/ProcPrinter.h" |
|
#include <stdio.h> |
|
|
|
void printCpuUsage(double results[], uint8_t size) |
|
{ |
|
for (uint8_t i = 0; i < size; i++) { |
|
printf("CPU %d: %f\n", i, results[i]); |
|
} |
|
printf("---\n"); |
|
}
|
|
|