Hi Folks .....
just to say .... I have looked all over for this solution ....I know it's here somewhere, if someone could please help me ...
I did the battery upgrade ..... everything working fine ..... I can't seem to change the battery capacity from 830 to 1400 .....
Can any one explain what I'm missing here....
T
As said above, it's just hardcoded to specific value in the source codes.
I did a quick search for string "battery" in the source codes of rockbox 3.13
/rockbox-3.13/firmware/export/config/gigabeatfx.h
/rockbox-3.13/firmware/export/config/gigabeats.h
gigabeats.h
#define BATTERY_CAPACITY_DEFAULT 700 /* default battery capacity */
#define BATTERY_CAPACITY_MIN 700 /* min. capacity selectable */
#define BATTERY_CAPACITY_MAX 1200 /* max. capacity selectable */
#define BATTERY_CAPACITY_INC 25 /* capacity increment */
#define BATTERY_TYPES_COUNT 1 /* only one type */
gigabeatfx.h
#define BATTERY_CAPACITY_DEFAULT 830 /* default battery capacity */
#define BATTERY_CAPACITY_MIN 830 /* min. capacity selectable */
#define BATTERY_CAPACITY_MAX 830 /* max. capacity selectable */
#define BATTERY_CAPACITY_INC 25 /* capacity increment */
#define BATTERY_TYPES_COUNT 1 /* only one type */
It's exactly what you need to change depends what a gigabeat model you are using - Toshiba Gigabeat S (gigabeats.h) or Toshiba Gigabeat F/X (gigabeatfx.h).