DRV2605L.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /* Copyright 2018 ishtob
  2. * Driver for DRV2605L written for QMK
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include "DRV2605L.h"
  18. #include "print.h"
  19. #include <stdlib.h>
  20. #include <stdio.h>
  21. #include <math.h>
  22. uint8_t DRV2605L_transfer_buffer[20];
  23. uint8_t DRV2605L_tx_register[0];
  24. uint8_t DRV2605L_read_buffer[0];
  25. uint8_t DRV2605L_read_register;
  26. void DRV_write(uint8_t drv_register, uint8_t settings) {
  27. DRV2605L_transfer_buffer[0] = drv_register;
  28. DRV2605L_transfer_buffer[1] = settings;
  29. i2c_transmit(DRV2605L_BASE_ADDRESS << 1, DRV2605L_transfer_buffer, 2, 100);
  30. }
  31. uint8_t DRV_read(uint8_t regaddress) {
  32. DRV2605L_tx_register[0] = regaddress;
  33. if (MSG_OK != i2c_transmit_receive(DRV2605L_BASE_ADDRESS << 1,
  34. DRV2605L_tx_register, 1,
  35. DRV2605L_read_buffer, 1
  36. )){
  37. printf("err reading reg \n");
  38. }
  39. DRV2605L_read_register = (uint8_t)DRV2605L_read_buffer[0];
  40. return DRV2605L_read_register;
  41. }
  42. void DRV_init(void)
  43. {
  44. i2c_init();
  45. i2c_start(DRV2605L_BASE_ADDRESS);
  46. /* 0x07 sets DRV2605 into calibration mode */
  47. DRV_write(DRV_MODE,0x07);
  48. // DRV_write(DRV_FEEDBACK_CTRL,0xB6);
  49. #if FB_ERM_LRA == 0
  50. /* ERM settings */
  51. DRV_write(DRV_RATED_VOLT, (RATED_VOLTAGE/21.33)*1000);
  52. #if ERM_OPEN_LOOP == 0
  53. DRV_write(DRV_OVERDRIVE_CLAMP_VOLT, (((V_PEAK*(DRIVE_TIME+BLANKING_TIME+IDISS_TIME))/0.02133)/(DRIVE_TIME-0.0003)));
  54. #elif ERM_OPEN_LOOP == 1
  55. DRV_write(DRV_OVERDRIVE_CLAMP_VOLT, (V_PEAK/0.02196));
  56. #endif
  57. #elif FB_ERM_LRA == 1
  58. DRV_write(DRV_RATED_VOLT, ((V_RMS * sqrt(1 - ((4 * ((150+(SAMPLE_TIME*50))*0.000001)) + 0.0003)* F_LRA)/0.02071)));
  59. #if LRA_OPEN_LOOP == 0
  60. DRV_write(DRV_OVERDRIVE_CLAMP_VOLT, ((V_PEAK/sqrt(1-(F_LRA*0.0008))/0.02133)));
  61. #elif LRA_OPEN_LOOP == 1
  62. DRV_write(DRV_OVERDRIVE_CLAMP_VOLT, (V_PEAK/0.02196));
  63. #endif
  64. #endif
  65. DRVREG_FBR FB_SET;
  66. FB_SET.Bits.ERM_LRA = FB_ERM_LRA;
  67. FB_SET.Bits.BRAKE_FACTOR = FB_BRAKEFACTOR;
  68. FB_SET.Bits.LOOP_GAIN =FB_LOOPGAIN;
  69. FB_SET.Bits.BEMF_GAIN = 0; /* auto-calibration populates this field*/
  70. DRV_write(DRV_FEEDBACK_CTRL, (uint8_t) FB_SET.Byte);
  71. DRVREG_CTRL1 C1_SET;
  72. C1_SET.Bits.C1_DRIVE_TIME = DRIVE_TIME;
  73. C1_SET.Bits.C1_AC_COUPLE = AC_COUPLE;
  74. C1_SET.Bits.C1_STARTUP_BOOST = STARTUP_BOOST;
  75. DRV_write(DRV_CTRL_1, (uint8_t) C1_SET.Byte);
  76. DRVREG_CTRL2 C2_SET;
  77. C2_SET.Bits.C2_BIDIR_INPUT = BIDIR_INPUT;
  78. C2_SET.Bits.C2_BRAKE_STAB = BRAKE_STAB;
  79. C2_SET.Bits.C2_SAMPLE_TIME = SAMPLE_TIME;
  80. C2_SET.Bits.C2_BLANKING_TIME = BLANKING_TIME;
  81. C2_SET.Bits.C2_IDISS_TIME = IDISS_TIME;
  82. DRV_write(DRV_CTRL_2, (uint8_t) C2_SET.Byte);
  83. DRVREG_CTRL3 C3_SET;
  84. C3_SET.Bits.C3_LRA_OPEN_LOOP = LRA_OPEN_LOOP;
  85. C3_SET.Bits.C3_N_PWM_ANALOG = N_PWM_ANALOG;
  86. C3_SET.Bits.C3_LRA_DRIVE_MODE = LRA_DRIVE_MODE;
  87. C3_SET.Bits.C3_DATA_FORMAT_RTO = DATA_FORMAT_RTO;
  88. C3_SET.Bits.C3_SUPPLY_COMP_DIS = SUPPLY_COMP_DIS;
  89. C3_SET.Bits.C3_ERM_OPEN_LOOP = ERM_OPEN_LOOP;
  90. C3_SET.Bits.C3_NG_THRESH = NG_THRESH;
  91. DRV_write(DRV_CTRL_3, (uint8_t) C3_SET.Byte);
  92. DRVREG_CTRL4 C4_SET;
  93. C4_SET.Bits.C4_ZC_DET_TIME = ZC_DET_TIME;
  94. C4_SET.Bits.C4_AUTO_CAL_TIME = AUTO_CAL_TIME;
  95. DRV_write(DRV_CTRL_4, (uint8_t) C4_SET.Byte);
  96. DRV_write(DRV_LIB_SELECTION,LIB_SELECTION);
  97. //start autocalibration
  98. DRV_write(DRV_GO, 0x01);
  99. /* 0x00 sets DRV2605 out of standby and to use internal trigger
  100. * 0x01 sets DRV2605 out of standby and to use external trigger */
  101. DRV_write(DRV_MODE,0x00);
  102. /* 0x06: LRA library */
  103. DRV_write(DRV_WAVEFORM_SEQ_1, 0x01);
  104. /* 0xB9: LRA, 4x brake factor, medium gain, 7.5x back EMF
  105. * 0x39: ERM, 4x brake factor, medium gain, 1.365x back EMF */
  106. /* TODO: setup auto-calibration as part of initiation */
  107. }
  108. void DRV_pulse(uint8_t sequence)
  109. {
  110. DRV_write(DRV_GO, 0x00);
  111. DRV_write(DRV_WAVEFORM_SEQ_1, sequence);
  112. DRV_write(DRV_GO, 0x01);
  113. }