diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-03-04 15:30:04 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-03-04 15:30:04 +0100 |
commit | 618972e944942d7c3b4dac1f7c769608ea1d897c (patch) | |
tree | a0a81a77c39ca58859cefb29852921f35c663d45 /include | |
parent | 8abe98e1a21457ce01a25184066dff5f640718c6 (diff) |
Add LM75 DFA model
Diffstat (limited to 'include')
-rw-r--r-- | include/driver/lm75.h | 2 |
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; |