summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-03-04 15:30:04 +0100
committerDaniel Friesel <derf@finalrewind.org>2019-03-04 15:30:04 +0100
commit618972e944942d7c3b4dac1f7c769608ea1d897c (patch)
treea0a81a77c39ca58859cefb29852921f35c663d45 /include
parent8abe98e1a21457ce01a25184066dff5f640718c6 (diff)
Add LM75 DFA model
Diffstat (limited to 'include')
-rw-r--r--include/driver/lm75.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/driver/lm75.h b/include/driver/lm75.h
index 5bb92fa..693578a 100644
--- a/include/driver/lm75.h
+++ b/include/driver/lm75.h
@@ -16,6 +16,8 @@ class LM75 {
unsigned int getHyst();
void setOS(unsigned char os);
void setHyst(unsigned char hyst);
+ void init();
+ void shutdown();
};
extern LM75 lm75;