Honza T. / Mbed 2 deprecated EXAMPLE_Nucleo_mbed_RTOS_test_code

Dependencies:   DS1620_improved TextLCD_improved mbed-rtos mbed

tsk_temp.h

Committer:
dzoni
Date:
2015-12-14
Revision:
9:645f0e517017
Child:
11:e89f89c0920b

File content as of revision 9:645f0e517017:

#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