diff options
| author | Szymon Dziok <b0hoon@o2.pl> | 2010-10-27 19:53:47 +0000 |
|---|---|---|
| committer | Szymon Dziok <b0hoon@o2.pl> | 2010-10-27 19:53:47 +0000 |
| commit | 2eeb29bc04941cf34eab18efa233de0ea5c4c230 (patch) | |
| tree | 166eef92647cb57d1c6634774c57dfee03b1a67f | |
| parent | 60c640b5493ffac88a23e05f1a819dff27ec2de3 (diff) | |
| download | rockbox-2eeb29bc04941cf34eab18efa233de0ea5c4c230.zip rockbox-2eeb29bc04941cf34eab18efa233de0ea5c4c230.tar.gz rockbox-2eeb29bc04941cf34eab18efa233de0ea5c4c230.tar.bz2 rockbox-2eeb29bc04941cf34eab18efa233de0ea5c4c230.tar.xz | |
HDD6330: fix some values in config (USB PID, battery capacity), insert commented out ATA DMA.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28367 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config/gogearhdd6330.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/firmware/export/config/gogearhdd6330.h b/firmware/export/config/gogearhdd6330.h index 2ef8a43..4a2a6a4 100644 --- a/firmware/export/config/gogearhdd6330.h +++ b/firmware/export/config/gogearhdd6330.h @@ -135,10 +135,10 @@ #define HAVE_BUTTON_LIGHT #define HAVE_BUTTONLIGHT_BRIGHTNESS -#define BATTERY_CAPACITY_DEFAULT 630 /* default battery capacity */ -#define BATTERY_CAPACITY_MIN 630 /* min. capacity selectable */ -#define BATTERY_CAPACITY_MAX 630 /* max. capacity selectable */ -#define BATTERY_CAPACITY_INC 0 /* capacity increment */ +#define BATTERY_CAPACITY_DEFAULT 840 /* default battery capacity */ +#define BATTERY_CAPACITY_MIN 800 /* min. capacity selectable */ +#define BATTERY_CAPACITY_MAX 1200 /* max. capacity selectable */ +#define BATTERY_CAPACITY_INC 20 /* capacity increment */ #define BATTERY_TYPES_COUNT 1 /* only one type */ /* Hardware controlled charging */ @@ -190,7 +190,7 @@ #define HAVE_USBSTACK #define USE_ROCKBOX_USB #define USB_VENDOR_ID 0x0471 -#define USB_PRODUCT_ID 0x014C +#define USB_PRODUCT_ID 0x014B #define HAVE_USB_HID_MOUSE /* Define this if you have adjustable CPU frequency */ @@ -203,5 +203,11 @@ #define ICODE_ATTR_TREMOR_NOT_MDCT +/* DMA is used only for reading on PP502x because although reads are ~8x faster + * writes appear to be ~25% slower. + */ +/* TODO: it does not work - it hangs the player */ +/* #define HAVE_ATA_DMA */ + /* Define this if a programmable hotkey is mapped */ #define HAVE_HOTKEY |