From ee4b5f77a455278a128a27d65761ad683723c7c9 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Thu, 25 Sep 2025 09:50:17 +0200 Subject: [PATCH] add autostart option min prorfile --- src/kds_s2000w_option_descriptors.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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() -- 2.47.3