Skip to content
Snippets Groups Projects
Commit f10fd4d0 authored by Robin Obůrka's avatar Robin Obůrka Committed by Michal 'vorner' Vaner
Browse files

Rename output

parent ed83b244
No related merge requests found
......@@ -61,7 +61,7 @@ int main(int argc, char **argv) {
HANDLE_ERROR;
return 3;
} else {
printf("Local:\t%u\n", (unsigned int)(buff[0]));
printf("Board:\t%u\n", (unsigned int)(buff[0]));
}
//Read remote temperature
buff[0] = 0x01;
......@@ -73,7 +73,7 @@ int main(int argc, char **argv) {
HANDLE_ERROR;
return 3;
} else {
printf("Remote:\t%u\n", (unsigned int)(buff[0]));
printf("CPU:\t%u\n", (unsigned int)(buff[0]));
}
return 0;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment