My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stepper_dac.cpp 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program 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. * This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * stepper_dac.cpp - To set stepper current via DAC
  24. *
  25. * Part of Marlin
  26. *
  27. * Copyright (c) 2016 MarlinFirmware
  28. *
  29. * Marlin is free software: you can redistribute it and/or modify
  30. * it under the terms of the GNU General Public License as published by
  31. * the Free Software Foundation, either version 3 of the License, or
  32. * (at your option) any later version.
  33. *
  34. * Marlin is distributed in the hope that it will be useful,
  35. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  36. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  37. * GNU General Public License for more details.
  38. *
  39. * You should have received a copy of the GNU General Public License
  40. * along with Marlin. If not, see <http://www.gnu.org/licenses/>.
  41. */
  42. #include "../../inc/MarlinConfig.h"
  43. #if ENABLED(DAC_STEPPER_CURRENT)
  44. #include "stepper_dac.h"
  45. bool dac_present = false;
  46. const uint8_t dac_order[NUM_AXIS] = DAC_STEPPER_ORDER;
  47. uint8_t dac_channel_pct[XYZE] = DAC_MOTOR_CURRENT_DEFAULT;
  48. int dac_init() {
  49. #if PIN_EXISTS(DAC_DISABLE)
  50. OUT_WRITE(DAC_DISABLE_PIN, LOW); // set pin low to enable DAC
  51. #endif
  52. mcp4728_init();
  53. if (mcp4728_simpleCommand(RESET)) return -1;
  54. dac_present = true;
  55. mcp4728_setVref_all(DAC_STEPPER_VREF);
  56. mcp4728_setGain_all(DAC_STEPPER_GAIN);
  57. if (mcp4728_getDrvPct(0) < 1 || mcp4728_getDrvPct(1) < 1 || mcp4728_getDrvPct(2) < 1 || mcp4728_getDrvPct(3) < 1 ) {
  58. mcp4728_setDrvPct(dac_channel_pct);
  59. mcp4728_eepromWrite();
  60. }
  61. return 0;
  62. }
  63. void dac_current_percent(uint8_t channel, float val) {
  64. if (!dac_present) return;
  65. NOMORE(val, 100);
  66. mcp4728_analogWrite(dac_order[channel], val * 0.01 * (DAC_STEPPER_MAX));
  67. mcp4728_simpleCommand(UPDATE);
  68. }
  69. void dac_current_raw(uint8_t channel, uint16_t val) {
  70. if (!dac_present) return;
  71. NOMORE(val, DAC_STEPPER_MAX);
  72. mcp4728_analogWrite(dac_order[channel], val);
  73. mcp4728_simpleCommand(UPDATE);
  74. }
  75. static float dac_perc(int8_t n) { return 100.0 * mcp4728_getValue(dac_order[n]) * (1.0 / (DAC_STEPPER_MAX)); }
  76. static float dac_amps(int8_t n) { return mcp4728_getDrvPct(dac_order[n]) * (DAC_STEPPER_MAX) * 0.125 * (1.0 / (DAC_STEPPER_SENSE)); }
  77. uint8_t dac_current_get_percent(AxisEnum axis) { return mcp4728_getDrvPct(dac_order[axis]); }
  78. void dac_current_set_percents(const uint8_t pct[XYZE]) {
  79. LOOP_XYZE(i) dac_channel_pct[i] = pct[dac_order[i]];
  80. mcp4728_setDrvPct(dac_channel_pct);
  81. }
  82. void dac_print_values() {
  83. if (!dac_present) return;
  84. SERIAL_ECHO_START();
  85. SERIAL_ECHOLNPGM("Stepper current values in % (Amps):");
  86. SERIAL_ECHO_START();
  87. SERIAL_ECHOPAIR(" X:", dac_perc(X_AXIS));
  88. SERIAL_ECHOPAIR(" (", dac_amps(X_AXIS));
  89. SERIAL_ECHOPAIR(") Y:", dac_perc(Y_AXIS));
  90. SERIAL_ECHOPAIR(" (", dac_amps(Y_AXIS));
  91. SERIAL_ECHOPAIR(") Z:", dac_perc(Z_AXIS));
  92. SERIAL_ECHOPAIR(" (", dac_amps(Z_AXIS));
  93. SERIAL_ECHOPAIR(") E:", dac_perc(E_AXIS));
  94. SERIAL_ECHOPAIR(" (", dac_amps(E_AXIS));
  95. SERIAL_ECHOLNPGM(")");
  96. }
  97. void dac_commit_eeprom() {
  98. if (!dac_present) return;
  99. mcp4728_eepromWrite();
  100. }
  101. #endif // DAC_STEPPER_CURRENT