Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved help messages and profile updates #324

Merged
merged 12 commits into from
May 17, 2023
84 changes: 68 additions & 16 deletions src/osd.c
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,8 @@ static void info_help_buttons(int line);
static void info_help_calibration(int line);
static void info_help_noise(int line);
static void info_help_flashing(int line);
static void info_help_artifacts(int line);
static void info_help_updates(int line);
static void info_cal_summary(int line);
static void info_cal_detail(int line);
static void info_cal_raw(int line);
Expand All @@ -496,7 +498,9 @@ static info_menu_item_t system_summary_ref = { I_INFO, "System Summary",
static info_menu_item_t help_buttons_ref = { I_INFO, "Help Buttons", info_help_buttons};
static info_menu_item_t help_calibration_ref = { I_INFO, "Help Calibration", info_help_calibration};
static info_menu_item_t help_noise_ref = { I_INFO, "Help Noise", info_help_noise};
static info_menu_item_t help_flashing_ref = { I_INFO, "Help Flashing Screen", info_help_flashing};
static info_menu_item_t help_flashing_ref = { I_INFO, "Help Flashing Screen",info_help_flashing};
static info_menu_item_t help_artifacts_ref = { I_INFO, "Help NTSC Artifacts", info_help_artifacts};
static info_menu_item_t help_updates_ref = { I_INFO, "Help Software Updates",info_help_updates};
static info_menu_item_t cal_summary_ref = { I_INFO, "Calibration Summary", info_cal_summary};
static info_menu_item_t cal_detail_ref = { I_INFO, "Calibration Detail", info_cal_detail};
static info_menu_item_t cal_raw_ref = { I_INFO, "Calibration Raw", info_cal_raw};
Expand Down Expand Up @@ -693,13 +697,15 @@ static menu_t info_menu = {
(base_menu_item_t *) &back_ref,
(base_menu_item_t *) &source_summary_ref,
(base_menu_item_t *) &system_summary_ref,
(base_menu_item_t *) &cal_summary_ref,
(base_menu_item_t *) &cal_detail_ref,
(base_menu_item_t *) &cal_raw_ref,
(base_menu_item_t *) &help_buttons_ref,
(base_menu_item_t *) &help_calibration_ref,
(base_menu_item_t *) &help_artifacts_ref,
(base_menu_item_t *) &help_flashing_ref,
(base_menu_item_t *) &help_noise_ref,
(base_menu_item_t *) &cal_summary_ref,
(base_menu_item_t *) &cal_detail_ref,
(base_menu_item_t *) &cal_raw_ref,
(base_menu_item_t *) &help_updates_ref,
(base_menu_item_t *) &save_list_ref,
(base_menu_item_t *) &save_log_ref,
(base_menu_item_t *) &credits_ref,
Expand Down Expand Up @@ -1648,9 +1654,9 @@ static void info_help_buttons(int line) {
osd_set(line++, 0, "SW2 in menu: cursor down / increase value");
osd_set(line++, 0, "");
osd_set(line++, 0, "SW3 short press depends on setting:");
osd_set(line++, 0, "Normally enable or test genlock or");
osd_set(line++, 0, "Select Phase when NTSC artifacts on or");
osd_set(line++, 0, "Toggle Set 1/2 if manual autoswitch");
osd_set(line++, 0, "Normally: Enable/test genlock");
osd_set(line++, 0, "When NTSC artifacts on: Select Phase");
osd_set(line++, 0, "When manual autoswitch: Toggle Set 1/2");
osd_set(line++, 0, "SW3 long press: Auto calibrate sampling");
osd_set(line++, 0, "SW3 in menu: cursor up / decrease value");
osd_set(line++, 0, "");
Expand Down Expand Up @@ -1691,14 +1697,14 @@ static void info_help_calibration(int line) {

static void info_help_flashing(int line) {
osd_set(line++, 0, "The screen flashing continuously means");
osd_set(line++, 0, "either the capture size is too big or");
osd_set(line++, 0, "the timing of the video source doesn't");
osd_set(line++, 0, "match any of the profiles in the currently");
osd_set(line++, 0, "selected autoswitch sub-profile set.");
osd_set(line++, 0, "This is most likely to occur with a PC");
osd_set(line++, 0, "profile as there are many clones with");
osd_set(line++, 0, "slightly different timings.");
osd_set(line++, 0, "");
osd_set(line++, 0, "A match is determined by the following:");
osd_set(line++, 0, "Try reducing the minimum and maximum sizes");
osd_set(line++, 0, "in the geometry menu. For timing problems,");
osd_set(line++, 0, "a match is determined by the following:");
osd_set(line++, 0, "1 'Lines per Frame' matches detected");
osd_set(line++, 0, "2 'Sync Type' matches detected");
osd_set(line++, 0, "3 PPM error < Clock Tolerance (close to 0)");
Expand All @@ -1707,13 +1713,11 @@ static void info_help_flashing(int line) {
osd_set(line++, 0, "Adjusting the above will display detected");
osd_set(line++, 0, "info at the top of the screen and the");
osd_set(line++, 0, "settings should be adjusted to match.");
osd_set(line++, 0, "Save configuration before exiting menu.");
osd_set(line++, 0, "");
osd_set(line++, 0, "'Clock Frequency' and 'Line Length' both");
osd_set(line++, 0, "affect the PPM error but only one");
osd_set(line++, 0, "combination will be correct. See wiki:");
osd_set(line++, 0, "https://github.com/hoglet67/RGBtoHDMI/wiki");
osd_set(line++, 0, "/Tutorial-on-Adding-a-New-Profile");
osd_set(line++, 0, "combination will be correct. See 'Tutorial");
osd_set(line++, 0, "on adding a new profile' in the wiki");
}

static void info_help_noise(int line) {
Expand All @@ -1738,6 +1742,54 @@ static void info_help_noise(int line) {
osd_set(line++, 0, "(See also 'Help Flashing Screen' & wiki)");
}

static void info_help_artifacts(int line) {
osd_set(line++, 0, "Apple II, IBM CGA and Tandy CoCo use NTSC");
osd_set(line++, 0, "artifacts to produce colours.");
osd_set(line++, 0, "To toggle NTSC artifact emulation on/off");
osd_set(line++, 0, "use a long press of SW2 or menu option.");
osd_set(line++, 0, "When NTSC artifacts are on, use a short");
osd_set(line++, 0, "press of SW3 or menu option to change the");
osd_set(line++, 0, "artifact phase (There are four possible");
osd_set(line++, 0, "settings which produce different colours).");
osd_set(line++, 0, "");
osd_set(line++, 0, "On the Apple II and Tandy CoCo artifacts");
osd_set(line++, 0, "will be enabled and disabled automatically");
osd_set(line++, 0, "but you can override with the above.");
osd_set(line++, 0, "If Apple II artifacts do not switch");
osd_set(line++, 0, "automatically, try adjusting the Y lo DAC");
osd_set(line++, 0, "setting (colour burst detect level).");
osd_set(line++, 0, "");
osd_set(line++, 0, "For single core Pi models (e.g. zero) only");
osd_set(line++, 0, "CGA mono mode is supported for artifacts.");
osd_set(line++, 0, "Full CGA artifact emulation for the four");
osd_set(line++, 0, "colour modes and the >1K colours produced");
osd_set(line++, 0, "by the 8088mph demo requires a multicore");
osd_set(line++, 0, "Pi model (Zero2W, 3 or 4).");
osd_set(line++, 0, "This may change in a future update.");
}

static void info_help_updates(int line) {
osd_set(line++, 0, "Latest stable software is available here:");
osd_set(line++, 0, "https://github.com/hoglet67/RGBtoHDMI");
osd_set(line++, 0, "/releases");
osd_set(line++, 0, "");
osd_set(line++, 0, "Latest beta software with new features and");
osd_set(line++, 0, "bug fixes is available here:");
osd_set(line++, 0, "https://github.com/IanSB/RGBtoHDMI");
osd_set(line++, 0, "/releases");
osd_set(line++, 0, "");
osd_set(line++, 0, "Documentation is available here:");
osd_set(line++, 0, "https://github.com/hoglet67/RGBtoHDMI/wiki");
osd_set(line++, 0, "or here:");
osd_set(line++, 0, "https://github.com/IanSB/RGBtoHDMI/wiki");
osd_set(line++, 0, "");
osd_set(line++, 0, "Development / support thread:");
osd_set(line++, 0, "https://stardot.org.uk/forums/");
osd_set(line++, 0, "viewtopic.php?f=3&t=14430");
osd_set(line++, 0, "Help is also available via the issues tab");
osd_set(line++, 0, "on the above github pages");
}

static void info_credits(int line) {
osd_set(line++, 0, "Many thanks to our main developers:");
osd_set(line++, 0, "- David Banks (hoglet)");
Expand Down Expand Up @@ -5116,7 +5168,7 @@ void osd_show_cpld_recovery_menu(int cpld_fail_state) {
osd_set(line++, 0, "Note: CPLDs bought from unofficial sources");
osd_set(line++, 0, "may have already been programmed and that");
osd_set(line++, 0, "can prevent initial reprogramming.");
osd_set(line++, 0, "To fix this cut the jumpers JP1, JP2 & JP4");
osd_set(line++, 0, "To fix this cut the jumpers JP1,JP2 & JP4.");
osd_set(line++, 0, "After reprogramming, remake the jumpers");
osd_set(line++, 0, "with solder blobs for normal operation.");
} else {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=3,3,3,3,3,3,3,0,0,0,6,0,0,0,0,0,0,1,1,0,120,50,120,50,50,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBrgb_(Spectrum)
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=1,1,1,1,1,1,1,0,1,0,6,0,0,0,0,0,0,1,0,0,255,77,255,77,58,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBrgb_(Spectrum)
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=3,3,3,3,3,3,3,0,0,0,6,0,0,0,0,0,0,1,1,0,120,50,120,50,50,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBrgb_(Spectrum)
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=1,1,1,1,1,1,1,0,1,0,6,0,0,0,0,0,0,1,0,0,255,77,255,77,58,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBrgb_(Spectrum)

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sampling=1,1,1,1,1,1,0,0,0,0,6,0,0,0,0,0,0,1,1,0,48,24,48,24,58,256,256,256
geometry=100,51,272,208,344,288,1,1,3,1,7000000,448,3000,312,4,0,0
palette=RGBrgb_(Spectrum)
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sampling=1,1,1,1,1,1,1,0,0,0,6,0,0,0,0,0,0,1,1,0,48,24,48,24,58,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093750,456,3000,311,4,0,0
palette=RGBrgb_(Spectrum)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sampling=0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,1,0,55,20,55,20,25,256,256,256
geometry=136,35,640,256,712,270,1,2,1,2,14318181,908,5000,313,0,1,1
palette=RrGgBb_(EGA)
ffosd_overlay=1
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sampling=0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,1,0,55,20,55,20,25,256,256,256
geometry=136,35,640,256,712,270,1,2,1,2,14318181,908,5000,313,0,1,1
palette=RrGgBb_(EGA)
ffosd_overlay=1
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sampling=3,3,3,3,3,3,3,0,1,0,2,0,0,0,0,0,0,5,1,0,55,20,55,20,25,127,127,127
geometry=136,34,640,200,712,224,2,5,1,2,14318181,910,5000,263,0,1,1
palette=RrGgBb_(EGA)
ffosd_overlay=1
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sampling=3,3,3,3,3,3,3,0,1,0,2,0,0,0,0,0,0,5,1,0,55,20,55,20,25,127,127,127
geometry=136,34,640,200,712,224,2,5,1,2,14187580,910,5000,263,0,1,1
palette=RrGgBb_(EGA)
ffosd_overlay=1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
auto_switch=1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=1,1,1,1,1,1,1,0,0,0,6,0,0,0,0,0,0,1,0,0,100,256,100,256,100,256,256,256
geometry=92,48,272,208,384,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,384,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBI_(Spectrum)
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=1,1,1,1,1,1,1,0,0,0,6,0,0,0,0,0,0,1,0,0,100,256,100,256,100,256,256,256
geometry=92,48,272,208,384,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,384,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBI_(Spectrum)
2 changes: 0 additions & 2 deletions src/scripts/Profiles/6-12_BIT_RGB/_Other/TS9347_40_COL.txt

This file was deleted.

2 changes: 0 additions & 2 deletions src/scripts/Profiles/6-12_BIT_RGB/_Other/TS9347_80_COL.txt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sampling=1,1,1,1,1,1,1,0,5,0,8,0,0,0,0,0,0,5,0,0,120,256,120,256,120,256,256,256
geometry=128,32,480,256,576,288,3,4,1,2,12000000,768,5000,314,0,6,0
geometry=128,39,480,256,576,288,3,4,1,2,12000000,768,5000,318,3,6,0
palette=RrGgBb_(EGA)
teletext_deinterlace=2
teletext_scaling=0
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=3,3,3,3,3,3,3,0,0,0,6,0,0,0,0,0,0,1,1,0,120,50,120,50,50,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBrgb_(Spectrum)
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=1,1,1,1,1,1,1,0,1,0,6,0,0,0,0,0,0,1,0,0,255,77,255,77,58,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBrgb_(Spectrum)
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=3,3,3,3,3,3,3,0,0,0,6,0,0,0,0,0,0,1,1,0,120,50,120,50,50,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBrgb_(Spectrum)
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=1,1,1,1,1,1,1,0,1,0,6,0,0,0,0,0,0,1,0,0,255,77,255,77,58,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,312,4,0,0
geometry=92,48,272,208,344,288,1,1,3,1,7093800,456,5000,311,4,0,0
palette=RGBrgb_(Spectrum)

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
auto_switch=1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sampling=1,1,1,1,1,1,0,0,0,0,6,0,0,0,0,0,0,1,1,0,48,24,48,24,58,256,256,256
geometry=100,51,272,208,344,288,1,1,3,1,7000000,448,3000,312,4,0,0
palette=RGBrgb_(Spectrum)
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sampling=1,1,1,1,1,1,1,0,0,0,6,0,0,0,0,0,0,1,1,0,48,24,48,24,58,256,256,256
geometry=92,48,272,208,344,288,1,1,3,1,7093750,456,3000,311,4,0,0
palette=RGBrgb_(Spectrum)
2 changes: 0 additions & 2 deletions src/scripts/Profiles/6-12_BIT_RGB_Analog/_Other/EF9340.txt

This file was deleted.

2 changes: 0 additions & 2 deletions src/scripts/Profiles/6-12_BIT_RGB_Analog/_Other/EF9345.txt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sampling=1,1,1,1,1,1,1,0,5,0,8,0,0,0,0,0,0,7,1,0,55,16,55,16,100,34,34,34
geometry=132,35,480,256,576,288,3,4,1,1,12000000,768,5000,314,5,6,0
geometry=132,39,480,256,576,288,3,4,1,1,12000000,768,5000,318,4,6,0
palette=RrGgBb_(EGA)
powerup_message=0
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
auto_switch=1
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sampling=5,5,5,5,5,5,5,0,1,0,4,0,0,0,0,4,0,7,1,0,65,32,256,256,10,48,256,256
geometry=180,33,640,256,720,280,1,2,1,2,16000000,1024,5000,312,4,6,0
palette=Mono_(4_level)
powerup_message=0
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sampling=4,4,4,4,4,4,4,0,1,0,4,0,0,0,0,0,1,1,1,0,65,32,256,256,256,10,256,256
geometry=180,37,640,256,720,280,1,2,1,2,16000000,1024,5000,316,4,6,0
palette=Mono_(3_level)
powerup_message=0
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sampling=4,4,4,4,4,4,4,0,1,0,4,0,0,0,0,0,0,1,1,1,65,32,256,256,10,256,256,256
geometry=180,31,640,256,720,280,1,2,1,2,16000000,1024,5000,310,4,6,0
palette=Mono_(3_level)
powerup_message=0
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sampling=6,6,6,6,6,6,6,0,1,0,4,0,0,0,0,0,1,1,0,0,134,68,256,256,256,10,256,87
geometry=180,35,640,256,720,280,1,2,1,2,16000000,1024,5000,314,4,6,0
palette=Mono_(3_level)
powerup_message=0
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
sampling=5,5,5,5,5,5,5,0,1,0,6,1,0,0,0,2,0,7,1,0,65,32,256,256,10,48,256,256
geometry=76,28,336,208,416,240,4,5,3,1,16363636,1040,5000,262,4,6,0
palette=Commodore_64
palette_control=7
powerup_message=0
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
sampling=5,5,5,5,5,5,5,0,1,0,7,1,0,0,0,4,1,1,1,0,65,48,256,256,256,10,256,256
geometry=144,35,608,200,736,238,2,5,1,2,14318181,912,15000,266,4,6,0
palette=Mono_(2_level)
palette_control=3
ntsc_colour=1
ntsc_type=2
powerup_message=0
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
sampling=0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,1,0,1,0,39,256,256,256,256,10,256,256
geometry=96,17,864,1024,872,1028,1,1,0,0,64000000,1024,5000,1056,4,6,0
palette=Mono_(2_level)
scanline_level=0
overclock_cpu=50
overclock_core=50
powerup_message=0
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sampling=1,1,1,1,1,1,1,0,5,0,8,0,0,0,0,0,1,1,1,0,65,36,256,256,256,12,256,256
geometry=132,39,480,256,576,288,3,4,1,1,12000000,768,5000,318,4,6,0
palette=Mono_(3_level)
powerup_message=0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sampling=0,0,0,0,0,0,0,0,1,0,7,1,0,0,0,4,1,1,1,0,55,34,256,256,256,10,256,256
sampling=6,6,6,6,6,6,6,0,1,0,8,1,0,0,0,4,1,1,1,0,55,34,256,256,256,8,256,256
geometry=160,46,592,200,736,288,2,4,1,2,14250160,912,15000,312,4,0,0
palette=Mono_(2_level)
palette_control=4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sampling=0,0,0,0,0,0,0,0,1,0,7,1,0,0,0,4,1,1,1,0,55,34,256,256,256,10,256,256
sampling=6,6,6,6,6,6,6,0,1,0,8,1,0,0,0,4,1,1,1,0,55,34,256,256,256,8,256,256
geometry=164,29,592,200,736,238,2,5,1,2,14318181,912,15000,262,4,0,0
palette=Mono_(2_level)
palette_control=4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sampling=0,0,0,0,0,0,0,0,1,0,7,1,0,0,0,4,1,1,1,0,55,34,256,256,256,10,256,256
sampling=6,6,6,6,6,6,6,0,1,0,8,1,0,0,0,4,1,1,1,0,55,34,256,256,256,8,256,256
geometry=160,46,592,200,736,288,2,4,1,2,14250160,912,15000,312,4,0,0
palette=Mono_(2_level)
palette_control=4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sampling=0,0,0,0,0,0,0,0,1,0,7,1,0,0,0,4,1,1,1,0,55,34,256,256,256,10,256,256
sampling=6,6,6,6,6,6,6,0,1,0,8,1,0,0,0,4,1,1,1,0,55,34,256,256,256,8,256,256
geometry=164,29,592,200,736,238,2,5,1,2,14318181,912,15000,262,4,0,0
palette=Mono_(2_level)
palette_control=4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sampling=0,0,0,0,0,0,0,0,1,0,7,1,0,0,0,4,1,1,1,0,55,34,256,256,256,10,256,256
sampling=6,6,6,6,6,6,6,0,1,0,8,1,0,0,0,4,1,1,1,0,55,34,256,256,256,8,256,256
geometry=160,46,592,200,736,288,2,4,1,2,14250160,912,15000,312,4,0,0
palette=Mono_(2_level)
palette_control=4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sampling=0,0,0,0,0,0,0,0,1,0,7,1,0,0,0,4,1,1,1,0,55,34,256,256,256,10,256,256
sampling=6,6,6,6,6,6,6,0,1,0,8,1,0,0,0,4,1,1,1,0,55,34,256,256,256,8,256,256
geometry=164,29,592,200,736,238,2,5,1,2,14318181,912,15000,262,4,0,0
palette=Mono_(2_level)
palette_control=4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampling=0,0,0,0,0,0,0,0,1,0,7,1,0,0,0,4,1,1,0,0,50,34,256,256,256,5,256,256
sampling=0,0,0,0,0,0,0,0,1,0,7,1,0,0,0,4,1,1,0,0,50,256,256,256,256,5,256,256
geometry=164,29,592,200,736,238,2,5,1,1,14318181,910,15000,262,4,0,0
palette=Mono_(2_level)
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sampling=2,2,2,2,2,2,2,0,1,0,7,0,0,0,0,4,0,1,0,1,71,256,256,256,0,256,25,256
geometry=132,30,512,240,640,284,3,4,1,1,12638000,806,15000,313,4,4,0
palette=Mono_(2_level)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
auto_switch=1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sampling=2,2,2,2,2,2,2,0,1,0,7,0,0,0,0,4,0,1,0,1,71,256,256,256,0,256,25,256
geometry=132,13,512,240,640,284,3,4,1,1,12638000,806,15000,313,4,4,0
palette=Mono_(2_level)
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sampling=2,2,2,2,2,2,2,0,1,0,7,0,0,0,0,4,0,1,0,1,71,256,256,256,0,256,27,256
geometry=132,13,512,240,640,244,3,4,1,1,12638000,806,15000,261,4,4,0
palette=Mono_(2_level)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
auto_switch=1