diff options
author | Thomas Martitz <kugel@rockbox.org> | 2014-01-23 08:23:34 +0100 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2014-03-03 15:14:15 +0100 |
commit | 62524237f0055d2825d6cde90c49840404c57e30 (patch) | |
tree | 97e085c54c0f39ceeb0b0492a76641c848981485 /firmware/export/config/sansafuzev2.h | |
parent | ee28a706d4909b00d6bcfc304683b10ba9b853e0 (diff) |
Implement lcd_get_dpi() for all bitmap targets.
DPI values are autogenerated from the resolution and collected display size
values. These values are inserted as comments as well.
Change-Id: Id03aedf9af18348f773dfce002805e480f6751e8
Diffstat (limited to 'firmware/export/config/sansafuzev2.h')
-rw-r--r-- | firmware/export/config/sansafuzev2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/config/sansafuzev2.h b/firmware/export/config/sansafuzev2.h index e559647443..beb18d92c7 100644 --- a/firmware/export/config/sansafuzev2.h +++ b/firmware/export/config/sansafuzev2.h @@ -104,6 +104,8 @@ /* LCD dimensions */ #define LCD_WIDTH 220 #define LCD_HEIGHT 176 +/* sqrt(220^2 + 176^2) / 2.2 = 128.1 */ +#define LCD_DPI 128 #define LCD_DEPTH 16 /* 65536 colours */ #define LCD_PIXELFORMAT RGB565SWAPPED /* rgb565 swapped */ |