|
@@ -0,0 +1,87 @@
|
|
1
|
+/*
|
|
2
|
+ stepper_dac.cpp - To set stepper current via DAC
|
|
3
|
+
|
|
4
|
+ Part of Marlin
|
|
5
|
+
|
|
6
|
+ Copyright (c) 2016 MarlinFirmware
|
|
7
|
+
|
|
8
|
+ Marlin is free software: you can redistribute it and/or modify
|
|
9
|
+ it under the terms of the GNU General Public License as published by
|
|
10
|
+ the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+ (at your option) any later version.
|
|
12
|
+
|
|
13
|
+ Marlin is distributed in the hope that it will be useful,
|
|
14
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+ GNU General Public License for more details.
|
|
17
|
+
|
|
18
|
+ You should have received a copy of the GNU General Public License
|
|
19
|
+ along with Marlin. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+*/
|
|
21
|
+
|
|
22
|
+#include "Marlin.h"
|
|
23
|
+
|
|
24
|
+#if ENABLED(DAC_STEPPER_CURRENT)
|
|
25
|
+
|
|
26
|
+ #include "stepper_dac.h"
|
|
27
|
+
|
|
28
|
+ bool dac_present = false;
|
|
29
|
+ const uint8_t dac_order[NUM_AXIS] = DAC_STEPPER_ORDER;
|
|
30
|
+
|
|
31
|
+ int dac_init() {
|
|
32
|
+ mcp4728_init();
|
|
33
|
+
|
|
34
|
+ if (mcp4728_simpleCommand(RESET)) return -1;
|
|
35
|
+
|
|
36
|
+ dac_present = true;
|
|
37
|
+
|
|
38
|
+ mcp4728_setVref_all(DAC_STEPPER_VREF);
|
|
39
|
+ mcp4728_setGain_all(DAC_STEPPER_GAIN);
|
|
40
|
+
|
|
41
|
+ return 0;
|
|
42
|
+ }
|
|
43
|
+
|
|
44
|
+ void dac_current_percent(uint8_t channel, float val) {
|
|
45
|
+ if (!dac_present) return;
|
|
46
|
+
|
|
47
|
+ NOMORE(val, 100);
|
|
48
|
+
|
|
49
|
+ mcp4728_analogWrite(dac_order[channel], val * DAC_STEPPER_MAX / 100);
|
|
50
|
+ mcp4728_simpleCommand(UPDATE);
|
|
51
|
+ }
|
|
52
|
+
|
|
53
|
+ void dac_current_raw(uint8_t channel, uint16_t val) {
|
|
54
|
+ if (!dac_present) return;
|
|
55
|
+
|
|
56
|
+ NOMORE(val, DAC_STEPPER_MAX);
|
|
57
|
+
|
|
58
|
+ mcp4728_analogWrite(dac_order[channel], val);
|
|
59
|
+ mcp4728_simpleCommand(UPDATE);
|
|
60
|
+ }
|
|
61
|
+
|
|
62
|
+ static float dac_perc(int8_t n) { return 100.0 * mcp4728_getValue(dac_order[n]) / DAC_STEPPER_MAX; }
|
|
63
|
+ static float dac_amps(int8_t n) { return ((2.048 * mcp4728_getValue(dac_order[n])) / 4096.0) / (8.0 * DAC_STEPPER_SENSE); }
|
|
64
|
+
|
|
65
|
+ void dac_print_values() {
|
|
66
|
+ if (!dac_present) return;
|
|
67
|
+
|
|
68
|
+ SERIAL_ECHO_START;
|
|
69
|
+ SERIAL_ECHOLNPGM("Stepper current values in % (Amps):");
|
|
70
|
+ SERIAL_ECHO_START;
|
|
71
|
+ SERIAL_ECHOPAIR(" X:", dac_perc(0));
|
|
72
|
+ SERIAL_ECHOPAIR(" (", dac_amps(0));
|
|
73
|
+ SERIAL_ECHOPAIR(") Y:", dac_perc(1));
|
|
74
|
+ SERIAL_ECHOPAIR(" (", dac_amps(1));
|
|
75
|
+ SERIAL_ECHOPAIR(") Z:", dac_perc(2));
|
|
76
|
+ SERIAL_ECHOPAIR(" (", dac_amps(2));
|
|
77
|
+ SERIAL_ECHOPAIR(") E:", dac_perc(3));
|
|
78
|
+ SERIAL_ECHOPAIR(" (", dac_amps(3));
|
|
79
|
+ SERIAL_ECHOLN(")");
|
|
80
|
+ }
|
|
81
|
+
|
|
82
|
+ void dac_commit_eeprom() {
|
|
83
|
+ if (!dac_present) return;
|
|
84
|
+ mcp4728_eepromWrite();
|
|
85
|
+ }
|
|
86
|
+
|
|
87
|
+#endif // DAC_STEPPER_CURRENT
|