diff options
| author | Uwe Freese <thebreaker@rockbox.org> | 2002-12-14 15:44:57 +0000 |
|---|---|---|
| committer | Uwe Freese <thebreaker@rockbox.org> | 2002-12-14 15:44:57 +0000 |
| commit | d564b60cd907c1c4f8e53eaf5e3c5e97a2c0f9bd (patch) | |
| tree | 8d21548838772626bed86feafa99d812c2f45f5b | |
| parent | 062afb3a360ae93228a0069154906a25586f0bf2 (diff) | |
| download | rockbox-d564b60cd907c1c4f8e53eaf5e3c5e97a2c0f9bd.zip rockbox-d564b60cd907c1c4f8e53eaf5e3c5e97a2c0f9bd.tar.gz rockbox-d564b60cd907c1c4f8e53eaf5e3c5e97a2c0f9bd.tar.bz2 rockbox-d564b60cd907c1c4f8e53eaf5e3c5e97a2c0f9bd.tar.xz | |
new boolean in general_settings tells if trickle is enabled
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2987 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h index b42b68a..ac5d230 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -83,7 +83,8 @@ struct user_settings 1=always, then according to timeout_values[] */ bool backlight_on_when_charging; - bool discharge; /* maintain charge of at least: false = 90%, true = 10% */ + bool discharge; /* maintain charge of at least: false = 85%, true = 10% */ + bool trickle_charge; /* do trickle charging: 0=off, 1=on */ /* resume settings */ |