aboutsummaryrefslogtreecommitdiffstats
path: root/fw/dac.h
diff options
context:
space:
mode:
Diffstat (limited to 'fw/dac.h')
-rw-r--r--fw/dac.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/fw/dac.h b/fw/dac.h
index 1882c3e..e9bf54b 100644
--- a/fw/dac.h
+++ b/fw/dac.h
@@ -20,17 +20,17 @@
void dacInit(void);
// Set DAC1 VOUTA.
-// Only the lower 10 bits are used.
-void dacSet1a(U16 level);
+// Mv is the desired voltage in millivolts.
+void dacSet1a(U16 mv);
// Set DAC1 VOUTB.
-// Only the lower 10 bits are used.
-void dacSet1b(U16 level);
+// Mv is the desired voltage in millivolts.
+void dacSet1b(U16 mv);
// Set DAC2 VOUTA.
-// Only the lower 10 bits are used.
-void dacSet2a(U16 level);
+// Mv is the desired voltage in millivolts.
+void dacSet2a(U16 mv);
// Set DAC2 VOUTB.
-// Only the lower 10 bits are used.
-void dacSet2b(U16 level);
+// Mv is the desired voltage in millivolts.
+void dacSet2b(U16 mv);