aboutsummaryrefslogtreecommitdiff
path: root/drivers/haptic
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/haptic')
-rw-r--r--drivers/haptic/DRV2605L.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/drivers/haptic/DRV2605L.c b/drivers/haptic/DRV2605L.c
index c40731913..830d629da 100644
--- a/drivers/haptic/DRV2605L.c
+++ b/drivers/haptic/DRV2605L.c
@@ -32,16 +32,9 @@ void DRV_write(uint8_t drv_register, uint8_t settings) {
32} 32}
33 33
34uint8_t DRV_read(uint8_t regaddress) { 34uint8_t DRV_read(uint8_t regaddress) {
35#ifdef __AVR__
36 i2c_readReg(DRV2605L_BASE_ADDRESS << 1, regaddress, DRV2605L_read_buffer, 1, 100); 35 i2c_readReg(DRV2605L_BASE_ADDRESS << 1, regaddress, DRV2605L_read_buffer, 1, 100);
37 DRV2605L_read_register = (uint8_t)DRV2605L_read_buffer[0]; 36 DRV2605L_read_register = (uint8_t)DRV2605L_read_buffer[0];
38#else 37
39 DRV2605L_tx_register[0] = regaddress;
40 if (MSG_OK != i2c_transmit_receive(DRV2605L_BASE_ADDRESS << 1, DRV2605L_tx_register, 1, DRV2605L_read_buffer, 1)) {
41 printf("err reading reg \n");
42 }
43 DRV2605L_read_register = (uint8_t)DRV2605L_read_buffer[0];
44#endif
45 return DRV2605L_read_register; 38 return DRV2605L_read_register;
46} 39}
47 40
@@ -127,4 +120,4 @@ void DRV_pulse(uint8_t sequence) {
127 DRV_write(DRV_GO, 0x00); 120 DRV_write(DRV_GO, 0x00);
128 DRV_write(DRV_WAVEFORM_SEQ_1, sequence); 121 DRV_write(DRV_WAVEFORM_SEQ_1, sequence);
129 DRV_write(DRV_GO, 0x01); 122 DRV_write(DRV_GO, 0x01);
130} \ No newline at end of file 123}