summaryrefslogtreecommitdiff
path: root/avr/main.c
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2016-01-24 23:10:24 +0100
committerFlorian Jung <flo@windfisch.org>2016-01-24 23:10:24 +0100
commited35d40a612633c3545a6cd7e59e3e432c623dfc (patch)
treee0bb7619ad1f7da7c33523e0b74e4b542c1eeead /avr/main.c
parent07ce2df5da6265702e1d99556f46139f8b5b8611 (diff)
actually commit the write
Diffstat (limited to 'avr/main.c')
-rw-r--r--avr/main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/avr/main.c b/avr/main.c
index 15d98d3..f79853e 100644
--- a/avr/main.c
+++ b/avr/main.c
@@ -212,6 +212,19 @@ int main(void)
goto write_failed;
}
+ result = w1_reset();
+ if (result != 0)
+ {
+ replyBuffer[0] = 0x03;
+ error = 1;
+ goto write_failed;
+ }
+
+ // commit the write
+ ds1992_scratch_copy(writepos, es_reg);
+
+
+
replyBuffer[0] = 0xFF; // success
error = 0;