blob: f61dd7a4ddc1a348e098998737e9775d6db97cd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* This config file is for the Sony NWZ-A860 series
*/
/* For Rolo and boot loader */
#define MODEL_NUMBER 107
#define MODEL_NAME "Sony NWZ-A860 Series"
/* LCD dimensions */
#define LCD_WIDTH 240
#define LCD_HEIGHT 400
/* sqrt(240^2 + 400^2) / 2.8 = 166 */
#define LCD_DPI 166
/* this device has a touchscreen */
#define HAVE_TOUCHSCREEN
#define HAVE_BUTTON_DATA
#include "sonynwzlinux.h"
/* override keypad */
#undef CONFIG_KEYPAD
#define CONFIG_KEYPAD SONY_NWZA860_PAD
|