2019-02-17 03:39:30 +01:00
|
|
|
/* Copyright 2019 ishtob
|
|
|
|
* Driver for haptic feedback written for QMK
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "haptic.h"
|
|
|
|
#include "eeconfig.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#ifdef DRV2605L
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "DRV2605L.h"
|
2019-02-17 03:39:30 +01:00
|
|
|
#endif
|
|
|
|
#ifdef SOLENOID_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "solenoid.h"
|
2019-02-17 03:39:30 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
haptic_config_t haptic_config;
|
|
|
|
|
|
|
|
void haptic_init(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
if (!eeconfig_is_enabled()) {
|
|
|
|
eeconfig_init();
|
|
|
|
}
|
|
|
|
haptic_config.raw = eeconfig_read_haptic();
|
2020-11-28 21:02:18 +01:00
|
|
|
#ifdef SOLENOID_ENABLE
|
|
|
|
solenoid_set_dwell(haptic_config.dwell);
|
|
|
|
#endif
|
|
|
|
if ((haptic_config.raw == 0)
|
|
|
|
#ifdef SOLENOID_ENABLE
|
|
|
|
|| (haptic_config.dwell == 0)
|
|
|
|
#endif
|
|
|
|
) {
|
|
|
|
// this will be called, if the eeprom is not corrupt,
|
|
|
|
// but the previous firmware didn't have haptic enabled,
|
|
|
|
// or the previous firmware didn't have solenoid enabled,
|
|
|
|
// and the current one has solenoid enabled.
|
2019-08-30 20:19:03 +02:00
|
|
|
haptic_reset();
|
|
|
|
}
|
|
|
|
#ifdef SOLENOID_ENABLE
|
2019-02-17 03:39:30 +01:00
|
|
|
solenoid_setup();
|
|
|
|
dprintf("Solenoid driver initialized\n");
|
2019-08-30 20:19:03 +02:00
|
|
|
#endif
|
|
|
|
#ifdef DRV2605L
|
2019-02-17 03:39:30 +01:00
|
|
|
DRV_init();
|
|
|
|
dprintf("DRV2605 driver initialized\n");
|
2019-08-30 20:19:03 +02:00
|
|
|
#endif
|
|
|
|
eeconfig_debug_haptic();
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_task(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
#ifdef SOLENOID_ENABLE
|
|
|
|
solenoid_check();
|
|
|
|
#endif
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void eeconfig_debug_haptic(void) {
|
2021-07-26 04:14:58 +02:00
|
|
|
dprintf("haptic_config eeprom\n");
|
2019-08-30 20:19:03 +02:00
|
|
|
dprintf("haptic_config.enable = %d\n", haptic_config.enable);
|
|
|
|
dprintf("haptic_config.mode = %d\n", haptic_config.mode);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_enable(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
haptic_config.enable = 1;
|
|
|
|
xprintf("haptic_config.enable = %u\n", haptic_config.enable);
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_disable(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
haptic_config.enable = 0;
|
|
|
|
xprintf("haptic_config.enable = %u\n", haptic_config.enable);
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_toggle(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
if (haptic_config.enable) {
|
|
|
|
haptic_disable();
|
|
|
|
} else {
|
|
|
|
haptic_enable();
|
|
|
|
}
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
void haptic_feedback_toggle(void) {
|
|
|
|
haptic_config.feedback++;
|
|
|
|
if (haptic_config.feedback >= HAPTIC_FEEDBACK_MAX) haptic_config.feedback = KEY_PRESS;
|
|
|
|
xprintf("haptic_config.feedback = %u\n", !haptic_config.feedback);
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_buzz_toggle(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
bool buzz_stat = !haptic_config.buzz;
|
|
|
|
haptic_config.buzz = buzz_stat;
|
|
|
|
haptic_set_buzz(buzz_stat);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_mode_increase(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
uint8_t mode = haptic_config.mode + 1;
|
|
|
|
#ifdef DRV2605L
|
|
|
|
if (haptic_config.mode >= drv_effect_max) {
|
|
|
|
mode = 1;
|
|
|
|
}
|
|
|
|
#endif
|
2019-02-17 03:39:30 +01:00
|
|
|
haptic_set_mode(mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_mode_decrease(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
uint8_t mode = haptic_config.mode - 1;
|
|
|
|
#ifdef DRV2605L
|
|
|
|
if (haptic_config.mode < 1) {
|
|
|
|
mode = (drv_effect_max - 1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
haptic_set_mode(mode);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_dwell_increase(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
#ifdef SOLENOID_ENABLE
|
2020-11-28 21:02:18 +01:00
|
|
|
int16_t next_dwell = ((int16_t)haptic_config.dwell) + SOLENOID_DWELL_STEP_SIZE;
|
2019-08-30 20:19:03 +02:00
|
|
|
if (haptic_config.dwell >= SOLENOID_MAX_DWELL) {
|
2020-11-28 21:02:18 +01:00
|
|
|
// if it's already at max, we wrap back to min
|
|
|
|
next_dwell = SOLENOID_MIN_DWELL;
|
|
|
|
} else if (next_dwell > SOLENOID_MAX_DWELL) {
|
|
|
|
// if we overshoot the max, then cap at max
|
|
|
|
next_dwell = SOLENOID_MAX_DWELL;
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
2020-11-28 21:02:18 +01:00
|
|
|
solenoid_set_dwell(next_dwell);
|
|
|
|
#else
|
|
|
|
int16_t next_dwell = ((int16_t)haptic_config.dwell) + 1;
|
2019-08-30 20:19:03 +02:00
|
|
|
#endif
|
2020-11-28 21:02:18 +01:00
|
|
|
haptic_set_dwell(next_dwell);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_dwell_decrease(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
#ifdef SOLENOID_ENABLE
|
2020-11-28 21:02:18 +01:00
|
|
|
int16_t next_dwell = ((int16_t)haptic_config.dwell) - SOLENOID_DWELL_STEP_SIZE;
|
|
|
|
if (haptic_config.dwell <= SOLENOID_MIN_DWELL) {
|
|
|
|
// if it's already at min, we wrap to max
|
|
|
|
next_dwell = SOLENOID_MAX_DWELL;
|
|
|
|
} else if (next_dwell < SOLENOID_MIN_DWELL) {
|
|
|
|
// if we go below min, then we cap to min
|
|
|
|
next_dwell = SOLENOID_MIN_DWELL;
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
2020-11-28 21:02:18 +01:00
|
|
|
solenoid_set_dwell(next_dwell);
|
|
|
|
#else
|
|
|
|
int16_t next_dwell = ((int16_t)haptic_config.dwell) - 1;
|
2019-08-30 20:19:03 +02:00
|
|
|
#endif
|
2020-11-28 21:02:18 +01:00
|
|
|
haptic_set_dwell(next_dwell);
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_reset(void) {
|
|
|
|
haptic_config.enable = true;
|
|
|
|
uint8_t feedback = HAPTIC_FEEDBACK_DEFAULT;
|
|
|
|
haptic_config.feedback = feedback;
|
|
|
|
#ifdef DRV2605L
|
|
|
|
uint8_t mode = HAPTIC_MODE_DEFAULT;
|
2019-02-17 03:39:30 +01:00
|
|
|
haptic_config.mode = mode;
|
2019-08-30 20:19:03 +02:00
|
|
|
#endif
|
|
|
|
#ifdef SOLENOID_ENABLE
|
|
|
|
uint8_t dwell = SOLENOID_DEFAULT_DWELL;
|
2019-02-17 03:39:30 +01:00
|
|
|
haptic_config.dwell = dwell;
|
2020-11-28 21:02:18 +01:00
|
|
|
haptic_config.buzz = SOLENOID_DEFAULT_BUZZ;
|
|
|
|
solenoid_set_dwell(dwell);
|
|
|
|
#else
|
|
|
|
// This is to trigger haptic_reset again, if solenoid is enabled in the future.
|
|
|
|
haptic_config.dwell = 0;
|
|
|
|
haptic_config.buzz = 0;
|
2019-08-30 20:19:03 +02:00
|
|
|
#endif
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
|
|
|
xprintf("haptic_config.feedback = %u\n", haptic_config.feedback);
|
|
|
|
xprintf("haptic_config.mode = %u\n", haptic_config.mode);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_set_feedback(uint8_t feedback) {
|
2019-08-30 20:19:03 +02:00
|
|
|
haptic_config.feedback = feedback;
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
|
|
|
xprintf("haptic_config.feedback = %u\n", haptic_config.feedback);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_set_mode(uint8_t mode) {
|
2019-08-30 20:19:03 +02:00
|
|
|
haptic_config.mode = mode;
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
|
|
|
xprintf("haptic_config.mode = %u\n", haptic_config.mode);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
2019-09-19 18:42:33 +02:00
|
|
|
void haptic_set_amplitude(uint8_t amp) {
|
2019-11-17 15:02:26 +01:00
|
|
|
haptic_config.amplitude = amp;
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
|
|
|
xprintf("haptic_config.amplitude = %u\n", haptic_config.amplitude);
|
|
|
|
#ifdef DRV2605L
|
|
|
|
DRV_amplitude(amp);
|
|
|
|
#endif
|
2019-09-19 18:42:33 +02:00
|
|
|
}
|
|
|
|
|
2019-02-17 03:39:30 +01:00
|
|
|
void haptic_set_buzz(uint8_t buzz) {
|
2019-08-30 20:19:03 +02:00
|
|
|
haptic_config.buzz = buzz;
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
|
|
|
xprintf("haptic_config.buzz = %u\n", haptic_config.buzz);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_set_dwell(uint8_t dwell) {
|
2019-08-30 20:19:03 +02:00
|
|
|
haptic_config.dwell = dwell;
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
|
|
|
xprintf("haptic_config.dwell = %u\n", haptic_config.dwell);
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
2021-07-26 04:14:58 +02:00
|
|
|
uint8_t haptic_get_enable(void) { return haptic_config.enable; }
|
|
|
|
|
2019-02-17 03:39:30 +01:00
|
|
|
uint8_t haptic_get_mode(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
if (!haptic_config.enable) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return haptic_config.mode;
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t haptic_get_feedback(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
if (!haptic_config.enable) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return haptic_config.feedback;
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t haptic_get_dwell(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
if (!haptic_config.enable) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return haptic_config.dwell;
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
2019-09-19 18:42:33 +02:00
|
|
|
void haptic_enable_continuous(void) {
|
2019-11-17 15:02:26 +01:00
|
|
|
haptic_config.cont = 1;
|
|
|
|
xprintf("haptic_config.cont = %u\n", haptic_config.cont);
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
|
|
|
#ifdef DRV2605L
|
|
|
|
DRV_rtp_init();
|
|
|
|
#endif
|
2019-09-19 18:42:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_disable_continuous(void) {
|
2019-11-17 15:02:26 +01:00
|
|
|
haptic_config.cont = 0;
|
|
|
|
xprintf("haptic_config.cont = %u\n", haptic_config.cont);
|
|
|
|
eeconfig_update_haptic(haptic_config.raw);
|
|
|
|
#ifdef DRV2605L
|
|
|
|
DRV_write(DRV_MODE, 0x00);
|
|
|
|
#endif
|
2019-09-19 18:42:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_toggle_continuous(void) {
|
2019-11-17 15:02:26 +01:00
|
|
|
if (haptic_config.cont) {
|
|
|
|
haptic_disable_continuous();
|
|
|
|
} else {
|
|
|
|
haptic_enable_continuous();
|
|
|
|
}
|
2019-09-19 18:42:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_cont_increase(void) {
|
2019-11-17 15:02:26 +01:00
|
|
|
uint8_t amp = haptic_config.amplitude + 10;
|
|
|
|
if (haptic_config.amplitude >= 120) {
|
|
|
|
amp = 120;
|
|
|
|
}
|
|
|
|
haptic_set_amplitude(amp);
|
2019-09-19 18:42:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_cont_decrease(void) {
|
2019-11-17 15:02:26 +01:00
|
|
|
uint8_t amp = haptic_config.amplitude - 10;
|
|
|
|
if (haptic_config.amplitude < 20) {
|
|
|
|
amp = 20;
|
|
|
|
}
|
|
|
|
haptic_set_amplitude(amp);
|
2019-09-19 18:42:33 +02:00
|
|
|
}
|
|
|
|
|
2019-02-17 03:39:30 +01:00
|
|
|
void haptic_play(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
#ifdef DRV2605L
|
|
|
|
uint8_t play_eff = 0;
|
|
|
|
play_eff = haptic_config.mode;
|
|
|
|
DRV_pulse(play_eff);
|
|
|
|
#endif
|
|
|
|
#ifdef SOLENOID_ENABLE
|
|
|
|
solenoid_fire();
|
|
|
|
#endif
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void haptic_shutdown(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
#ifdef SOLENOID_ENABLE
|
|
|
|
solenoid_shutdown();
|
|
|
|
#endif
|
2019-02-17 03:39:30 +01:00
|
|
|
}
|