From: Bastian Dehn Date: Thu, 25 Sep 2025 07:50:17 +0000 (+0200) Subject: add autostart option min prorfile X-Git-Tag: v1.1.7^2~3^2 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=ee4b5f77a455278a128a27d65761ad683723c7c9;p=sane-kds-s2000w-net.git add autostart option min prorfile --- diff --git a/src/kds_s2000w_option_descriptors.c b/src/kds_s2000w_option_descriptors.c index 5c3b060..bc7f053 100644 --- a/src/kds_s2000w_option_descriptors.c +++ b/src/kds_s2000w_option_descriptors.c @@ -6,7 +6,7 @@ #define PROFILE_FULL_MAX_OPTION_COUNT 48 #define PROFILE_230802_V1_0_36_MAX_OPTION_COUNT 26 -#define PROFILE_MIN_MAX_OPTION_COUNT 10 +#define PROFILE_MIN_MAX_OPTION_COUNT 12 option_descriptor** descriptors = NULL; uint8_t max_option_count = 0; @@ -1159,6 +1159,10 @@ void _kds_s2000w_option_descriptors_init_min_profile() descriptors[8]->descriptor = _kds_s2000w_option_descriptor_image_processing_group(); descriptors[9]->config_name = SKIP_BLANK_PAGES; descriptors[9]->descriptor = _kds_s2000w_option_descriptor_skip_blank_pages(); + descriptors[10]->config_name = FEEDER_GROUP; + descriptors[10]->descriptor = _kds_s2000w_option_descriptor_feeder_group(); + descriptors[11]->config_name = AUTOSTART; + descriptors[11]->descriptor = _kds_s2000w_option_descriptor_autostart(); } void _kds_s2000w_option_descriptors_init_230802_v1_0_36_profile()