Honza T. / Mbed 2 deprecated EXAMPLE_Nucleo_mbed_RTOS_test_code

Dependencies:   DS1620_improved TextLCD_improved mbed-rtos mbed

Revision:
9:645f0e517017
Child:
11:e89f89c0920b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tsk_temp.h	Mon Dec 14 11:32:15 2015 +0000
@@ -0,0 +1,14 @@
+#ifndef TSK_TEMP_H
+#define TSK_TEMP_H
+
+struct temp_data_struct {
+    uint32_t    temp_raw;
+    float       temperature;
+};
+
+extern struct temp_data_struct temp_data;
+
+extern void initDS1620Temp(void);
+extern void temp_thread(void const *args);
+
+#endif