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.7KB

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