Ability to disable IMU

This commit is contained in:
Denis 2024-01-15 02:15:06 +01:00
parent f4f638ea24
commit 1866d65b9e
No known key found for this signature in database
GPG key ID: DD9B63F805CF5C03
6 changed files with 17 additions and 3 deletions

View file

@ -25,6 +25,7 @@ int main(int argc, char ** argv) {
.enable_thermal_profiles_switching = false,
.default_thermal_profile = -1,
.enable_leds_commands = false,
.enable_imu = true,
};
load_in_config(&in_settings, configuration_file);

View file

@ -15,3 +15,4 @@ swap_y_z = true;
enable_thermal_profiles_switching = true;
default_thermal_profile = -1;
enable_leds_commands = true;
enable_imu = true;

1
main.c
View file

@ -24,6 +24,7 @@ int main(int argc, char ** argv) {
.enable_thermal_profiles_switching = false,
.default_thermal_profile = -1,
.enable_leds_commands = false,
.enable_imu = true,
};
load_in_config(&in_settings, configuration_file);

View file

@ -1516,19 +1516,22 @@ input_dev_t timer_dev = {
input_dev_composite_t rc71l_composite = {
.dev = {
&in_xbox_dev,
&in_iio_dev,
&in_asus_kb_1_dev,
&in_asus_kb_2_dev,
&in_asus_kb_3_dev,
&timer_dev,
},
.dev_count = 6,
.dev_count = 5,
.init_fn = rc71l_platform_init,
.deinit_fn = rc71l_platform_deinit,
.leds_fn = rc71l_platform_leds,
};
input_dev_composite_t* rog_ally_device_def(const dev_in_settings_t *const conf) {
if (conf->enable_imu) {
rc71l_composite.dev[rc71l_composite.dev_count++] = &in_iio_dev;
}
if (conf->touchbar) {
rc71l_composite.dev[rc71l_composite.dev_count++] = &in_touchscreen_dev;
}

View file

@ -76,6 +76,13 @@ void load_in_config(dev_in_settings_t *const out_conf, const char* const filepat
fprintf(stderr, "enable_leds_commands (bool) configuration not found. Default value will be used.\n");
}
int enable_imu;
if (config_lookup_bool(&cfg, "enable_imu", &enable_imu) != CONFIG_FALSE) {
out_conf->enable_imu = enable_imu;
} else {
fprintf(stderr, "enable_imu (bool) configuration not found. Default value will be used.\n");
}
config_destroy(&cfg);
load_in_config_err:

View file

@ -11,6 +11,7 @@ typedef struct dev_in_settings {
bool enable_thermal_profiles_switching;
int default_thermal_profile;
bool enable_leds_commands;
bool enable_imu;
} dev_in_settings_t;
void load_in_config(dev_in_settings_t *const out_conf, const char* const filepath);