From f10fd4d01275870be5edb554b2ef8f25b75918d5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Robin=20Ob=C5=AFrka?= <robin.oburka@nic.cz>
Date: Wed, 15 Jan 2014 12:33:53 +0100
Subject: [PATCH] Rename output

---
 thermometer/thermometer.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index 2688cfe..020ac41 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -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;
-- 
GitLab