]> gitweb.hhaalo.de Git - sane-kds-s2000w-net.git/commitdiff
add autostart option min prorfile
authorBastian Dehn <hhaalo@arcor.de>
Thu, 25 Sep 2025 07:50:17 +0000 (09:50 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Thu, 25 Sep 2025 07:50:17 +0000 (09:50 +0200)
src/kds_s2000w_option_descriptors.c

index 5c3b060982fa2b34a17fc38cda282218179e41d6..bc7f053187d15459a6a0e805995ac72cc6c287fe 100644 (file)
@@ -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()