Active Topics

 


Reply
Thread Tools
Posts: 1,341 | Thanked: 708 times | Joined on Feb 2010
#151
Originally Posted by zimon View Post
Well, I am using now anyway this Mugen 2400 mAh battery to see how it performs. I try to manage without the microMMC now until they send a new back cover. So far (after 16h use) seems pretty good. Chargelevel bars have gone down from 8 to 6. I will get back with this after weekend when I prolly will post some BatteryGraph snapshots.
As promised, here is the snapshot from BatteryGraph from the last 21 days. One can see clearly when the original 1320 mAh was changed to Mugen 2400 mAh battery (2010-03-25).
The last two cycles are with the 2400 mAh battery.

(a thumbnail only here)
http://talk.maemo.org/attachment.php...1&d=1269878175

Thanks to Jeroen Witteman for implementing the feature request of wide screenshots from BatteryGraph!

Because there is a limit, how big PNG image is embeddeble in this forum, the original image is here:
http://imagebin.org/90742
Attached Images
 

Last edited by zimon; 2010-04-02 at 13:00. Reason: pointed out the last two cycles in the graph
 

The Following 2 Users Say Thank You to zimon For This Useful Post:
Posts: 22 | Thanked: 123 times | Joined on Feb 2010
#152
Apparently the higher charge of the Mugen battery isn't reported by the HAL api. Otherwise the BatteryGraph would have scaled automatically (scale for voltage and charge are automatically adjusted according to the maximum values which are recorded in the database)

You could check this by running the following command in the console (which probably gives the same results with the Mugen battery)
Code:
Nokia-N900:~# lshal | grep battery.reporting
  battery.reporting.current = 840  (0x348)  (int)
  battery.reporting.design = 1264  (0x4f0)  (int)
  battery.reporting.last_full = 1222  (0x4c6)  (int)
  battery.reporting.unit = 'mAh'  (string)
The battery charge was 840 mAh when I ran this command on my device (with factory default battery)
__________________
Developer of BatteryGraph
 
Benson's Avatar
Posts: 4,930 | Thanked: 2,272 times | Joined on Oct 2007
#153
Originally Posted by jwittema View Post
Apparently the higher charge of the Mugen battery isn't reported by the HAL api. Otherwise the BatteryGraph would have scaled automatically (scale for voltage and charge are automatically adjusted according to the maximum values which are recorded in the database)
There's no means of communication with the battery, so it shouldn't know.

You could check this by running the following command in the console (which probably gives the same results with the Mugen battery)
Code:
Nokia-N900:~# lshal | grep battery.reporting
  battery.reporting.current = 840  (0x348)  (int)
  battery.reporting.design = 1264  (0x4f0)  (int)
  battery.reporting.last_full = 1222  (0x4c6)  (int)
  battery.reporting.unit = 'mAh'  (string)
The battery charge was 840 mAh when I ran this command on my device (with factory default battery)
Bizarrely, though, mine reports lower capacity:
Code:
~ $  lshal | grep battery.reporting
  battery.reporting.current = 925  (0x39d)  (int)
  battery.reporting.design = 944  (0x3b0)  (int)
  battery.reporting.last_full = 0  (0x0)  (int)
  battery.reporting.unit = 'mAh'  (string)
Unfortunately, I have no stock battery to test it with, but I suspect it would read the same (wrong) values. Maybe it infers design capacity from the first full cycle or something...


@f2thak: nothing to share, really. Put a strip of white cardboard over the lens-cover sensor, put an 18mm neodymium magnet over the door sensor (the edge will stick to the battery), and put the cover on.
 
Posts: 5,795 | Thanked: 3,151 times | Joined on Feb 2007 @ Agoura Hills Calif
#154
I got mine today, and wow, what a monstrosity! Well, it's not all bad; think of the fashion statement -- this guy is off the planet! <g>

I certainly will not carry this with me jogging. I'll have to see if I can even happily walk around with it in my pocket -- maybe I'll buy a crutch to help me hold up the pocket
 
Posts: 1,258 | Thanked: 672 times | Joined on Mar 2009
#155
Mine reports lower design capacity as well. There actually IS a way to ask the battery for its capacity, through the third pin. It's connected to a resistor, the resistance signals the design capacity. N900 seems to ignore it though.

I noticed that the battery meter is quite confused by the mugen battery. At some times the rate of discharge is same as with the original battery, but then the meter realizes that something is wrong, and corrects itself by showing 0 discharge for half an hour, sometimes it even adjusts the charge level upwards
 
juise-'s Avatar
Posts: 186 | Thanked: 192 times | Joined on Jan 2010 @ Finland
#156
Originally Posted by shadowjk View Post
Mine reports lower design capacity as well. There actually IS a way to ask the battery for its capacity, through the third pin. It's connected to a resistor, the resistance signals the design capacity. N900 seems to ignore it though.
My guess is that it isn't ignored, since different batteries give different 'design' values. Even the same battery, across device restarts, gives slightly different capacity values.

So most likely the Mugen thing has a wrong size resistor, or the phone refuses to believe in the huge capacity.

Originally Posted by shadowjk View Post
I noticed that the battery meter is quite confused by the mugen battery. At some times the rate of discharge is same as with the original battery, but then the meter realizes that something is wrong, and corrects itself by showing 0 discharge for half an hour, sometimes it even adjusts the charge level upwards
I'm getting that even with the default battery...
 
Posts: 1,341 | Thanked: 708 times | Joined on Feb 2010
#157
Originally Posted by jwittema View Post
You could check this by running the following command in the console (which probably gives the same results with the Mugen battery)
Right after the Mugen 2400 mAh battery was fully charged and detached from the charging cable:
Code:
Nokia-N900-42-11:~# lshal|grep battery.reporting
  battery.reporting.current = 642  (0x282)  (int)
  battery.reporting.design = 642  (0x282)  (int)
  battery.reporting.last_full = 642  (0x282)  (int)
  battery.reporting.unit = 'mAh'  (string)

Nokia-N900-42-11:~# lshal|grep volt             
  battery.voltage.current = 4118  (0x1016)  (int)
  battery.voltage.design = 4200  (0x1068)  (int)
  battery.voltage.unit = 'mV'  (string)
http://talk.maemo.org/attachment.php...1&d=1269965394

Somehow N900 seems to be little messed up with this "huge" battery. Today I left with "8 bars" in the morning, but suddenly in the afternoon bars dropped from 8 to 1 and it was yelling "battery is almost empty, gimme juice!" The battery had been in use before that and after the last full charge 25 hours. All that time, 25 hours, BatteryGraph and status panel showed 8 bars.

Seems like the voltage output from device is more reliable than current and charge-bars output.
Attached Images
 

Last edited by zimon; 2010-03-30 at 17:11. Reason: Voltage info added.
 
Posts: 1,255 | Thanked: 393 times | Joined on Oct 2009 @ US
#158
I assumed Mugen would account for the card function, but seems to have overlooked it. No point in buying this, since I use my microsd card a lot.

I am glad I checked this thread before buying- Thanks!
 
Posts: 436 | Thanked: 406 times | Joined on Jan 2010
#159
o.o ....Since no ones really posting the total amount of hrs it took for battery to drain, I assume that:

1) The battery is pretty much useless as it acts radically, sometimes jumping from 8 to 1 bars.

2) The battery is sometimes not fully charged because n900 does not detect the mugen batteries design properly...

3) The Mugen battery and It's Cover gives a hell of a lot of problems...

Correct me if I'm mistaken? plz
 
Posts: 1,341 | Thanked: 708 times | Joined on Feb 2010
#160
Originally Posted by SavageD View Post
o.o ....Since no ones really posting the total amount of hrs it took for battery to drain
See just few articles back, it has a link
http://imagebin.org/90742
There, in the end of the graph, you'll see two charge+drain cycles with Mugen battery. The cycles before those two last ones are with the original battery.
 

The Following User Says Thank You to zimon For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 02:34.