summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/config-fmrecorder.h3
-rw-r--r--firmware/export/config-ondiofm.h3
-rw-r--r--firmware/export/config-ondiosp.h3
-rw-r--r--firmware/export/config-recorder.h3
-rw-r--r--firmware/export/config-recorderv2.h3
-rw-r--r--firmware/export/config.h10
6 files changed, 25 insertions, 0 deletions
diff --git a/firmware/export/config-fmrecorder.h b/firmware/export/config-fmrecorder.h
index 50cee2be12..da281bd033 100644
--- a/firmware/export/config-fmrecorder.h
+++ b/firmware/export/config-fmrecorder.h
@@ -34,6 +34,9 @@
34#define LCD_HEIGHT 64 34#define LCD_HEIGHT 64
35#define LCD_DEPTH 1 35#define LCD_DEPTH 1
36 36
37#define LCD_PIXEL_ASPECT_WIDTH 4
38#define LCD_PIXEL_ASPECT_HEIGHT 5
39
37#define LCD_PIXELFORMAT VERTICAL_PACKING 40#define LCD_PIXELFORMAT VERTICAL_PACKING
38 41
39/* define this if you have a Recorder style 10-key keyboard */ 42/* define this if you have a Recorder style 10-key keyboard */
diff --git a/firmware/export/config-ondiofm.h b/firmware/export/config-ondiofm.h
index 8233728f1b..1b3b266191 100644
--- a/firmware/export/config-ondiofm.h
+++ b/firmware/export/config-ondiofm.h
@@ -24,6 +24,9 @@
24#define LCD_HEIGHT 64 24#define LCD_HEIGHT 64
25#define LCD_DEPTH 1 25#define LCD_DEPTH 1
26 26
27#define LCD_PIXEL_ASPECT_WIDTH 4
28#define LCD_PIXEL_ASPECT_HEIGHT 5
29
27#define LCD_PIXELFORMAT VERTICAL_PACKING 30#define LCD_PIXELFORMAT VERTICAL_PACKING
28 31
29/* define this if you have an Ondio style 6-key keyboard */ 32/* define this if you have an Ondio style 6-key keyboard */
diff --git a/firmware/export/config-ondiosp.h b/firmware/export/config-ondiosp.h
index 5fb7806d6a..85065f40bb 100644
--- a/firmware/export/config-ondiosp.h
+++ b/firmware/export/config-ondiosp.h
@@ -17,6 +17,9 @@
17#define LCD_HEIGHT 64 17#define LCD_HEIGHT 64
18#define LCD_DEPTH 1 18#define LCD_DEPTH 1
19 19
20#define LCD_PIXEL_ASPECT_WIDTH 4
21#define LCD_PIXEL_ASPECT_HEIGHT 5
22
20#define LCD_PIXELFORMAT VERTICAL_PACKING 23#define LCD_PIXELFORMAT VERTICAL_PACKING
21 24
22/* define this if you have an Ondio style 6-key keyboard */ 25/* define this if you have an Ondio style 6-key keyboard */
diff --git a/firmware/export/config-recorder.h b/firmware/export/config-recorder.h
index 75aa2cf789..ff74eef402 100644
--- a/firmware/export/config-recorder.h
+++ b/firmware/export/config-recorder.h
@@ -34,6 +34,9 @@
34#define LCD_HEIGHT 64 34#define LCD_HEIGHT 64
35#define LCD_DEPTH 1 35#define LCD_DEPTH 1
36 36
37#define LCD_PIXEL_ASPECT_WIDTH 4
38#define LCD_PIXEL_ASPECT_HEIGHT 5
39
37#define LCD_PIXELFORMAT VERTICAL_PACKING 40#define LCD_PIXELFORMAT VERTICAL_PACKING
38 41
39/* define this if you have the Recorder's 10-key keyboard */ 42/* define this if you have the Recorder's 10-key keyboard */
diff --git a/firmware/export/config-recorderv2.h b/firmware/export/config-recorderv2.h
index 3244f19f1d..4e77e3d4ed 100644
--- a/firmware/export/config-recorderv2.h
+++ b/firmware/export/config-recorderv2.h
@@ -34,6 +34,9 @@
34#define LCD_HEIGHT 64 34#define LCD_HEIGHT 64
35#define LCD_DEPTH 1 35#define LCD_DEPTH 1
36 36
37#define LCD_PIXEL_ASPECT_WIDTH 4
38#define LCD_PIXEL_ASPECT_HEIGHT 5
39
37#define LCD_PIXELFORMAT VERTICAL_PACKING 40#define LCD_PIXELFORMAT VERTICAL_PACKING
38 41
39/* define this if you have a Recorder style 10-key keyboard */ 42/* define this if you have a Recorder style 10-key keyboard */
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 9bc6c7c775..15b137588e 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -379,6 +379,16 @@
379#endif 379#endif
380#endif 380#endif
381 381
382/* Pixel aspect ratio is defined in terms of a multiplier for pixel width and
383 * height, and is set to 1:1 if the target does not set a value
384 */
385#ifndef LCD_PIXEL_ASPECT_HEIGHT
386#define LCD_PIXEL_ASPECT_HEIGHT 1
387#endif
388#ifndef LCD_PIXEL_ASPECT_WIDTH
389#define LCD_PIXEL_ASPECT_WIDTH 1
390#endif
391
382/* define this in the target config.h to use a different size */ 392/* define this in the target config.h to use a different size */
383#ifndef CONFIG_DEFAULT_ICON_HEIGHT 393#ifndef CONFIG_DEFAULT_ICON_HEIGHT
384#define CONFIG_DEFAULT_ICON_HEIGHT 8 394#define CONFIG_DEFAULT_ICON_HEIGHT 8