feat: implement cyborg joystick bulk write, global timings, and enhanced CLI mapping feedback
This commit is contained in:
@@ -407,6 +407,16 @@ int azeron_device_set_active_profile(struct azeron_device *device, uint8_t profi
|
||||
return azeron_protocol_set_active_profile(device, profile_id);
|
||||
}
|
||||
|
||||
/* Global settings */
|
||||
int azeron_device_set_global_timings(struct azeron_device *device, uint16_t long_press_delay, uint16_t double_click_delay)
|
||||
{
|
||||
if (!device) {
|
||||
return AZERON_ERROR_INVALID_PARAM;
|
||||
}
|
||||
|
||||
return azeron_protocol_set_global_timings(device, long_press_delay, double_click_delay);
|
||||
}
|
||||
|
||||
/* Save profile to device EEPROM */
|
||||
int azeron_device_save_profile(struct azeron_device *device, uint8_t profile_id)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user