int32_t inch = json_object_get_int(object_value);
*pixel = _kds_s2000w_handler_opts_inch_to_pixel(config, inch);
+ kds_s2000w_debug_printf_int(DEBUG, "pixel", *pixel);
}
void _kds_s2000w_handler_opts_set_inch_value_from_pixel(json_object* config, const char* option_name, void* value)
json_object* object_value = json_object_object_get(config, option_name);
int32_t inch = _kds_s2000w_handler_opts_pixel_to_inch(config, *pixel);
+ kds_s2000w_debug_printf_int(DEBUG, "inch", inch);
_kds_s2000w_handler_opts_write_int_value_to_json(object_value, &inch);
}