Welcome to the Rockbox Technical Forums!
It works no brick as of yet says Version V02.01.35A and like I said it did not brick
FlynDice, funman: Is this code in svn? I've flashed clip+8G with firmware made from svn r25276 and got ATA error. Is it consequence of differences between 2g and 8G clip+ or just I need to wait for your code in to svn?
Just a little clip+ update. If you haven't seen it by now, funman found the magic line to get sound!
does that fix the boot for the c200v2 that did not boot before
Index: rockbox-pwm/firmware/target/arm/as3525/sansa-c200v2/backlight-c200v2.c===================================================================--- rockbox-pwm.orig/firmware/target/arm/as3525/sansa-c200v2/backlight-c200v2.c 2010-03-18 01:11:34.328140932 +0900+++ rockbox-pwm/firmware/target/arm/as3525/sansa-c200v2/backlight-c200v2.c 2010-03-18 01:13:26.107078294 +0900@@ -37,12 +37,12 @@ static void _ll_backlight_on(void) {- GPIOA_PIN(5) = 1<<5;+ GPIOA_PIN(7) = 1<<7; } static void _ll_backlight_off(void) {- GPIOA_PIN(5) = 0;+ GPIOA_PIN(7) = 0; } void _backlight_pwm(int on)@@ -56,7 +56,7 @@ bool _backlight_init(void) {- GPIOA_DIR |= 1<<5;+ GPIOA_DIR |= 1<<7; return true; }
Quote from: bYOndo on March 25, 2010, 06:26:35 AMJust flashed my ClipV2 8GB, no problems at all. Finally, thanks for your _great_ work!A mere detail: mkamsboot asks for "m300a.bin" but the OF is named "m30pa.bin", I renamed it and it worked.A strange behaviour In RB: when you press pause or switch off the clip during music playing, it makes a little "buzz" sound.The booting time is even faster than OF Massimo yea but just rename the FW back to m30pa.bin after you should be fine but I have a 2G clip V2 so mabey it is different Rockbox runs fine for me don't know where you are hearing the buzz sounds I dont hear anything maybe you messed with the gain?
Just flashed my ClipV2 8GB, no problems at all. Finally, thanks for your _great_ work!A mere detail: mkamsboot asks for "m300a.bin" but the OF is named "m30pa.bin", I renamed it and it worked.A strange behaviour In RB: when you press pause or switch off the clip during music playing, it makes a little "buzz" sound.The booting time is even faster than OF Massimo
EDIT: One more thing there seems to be a problem with the database I cant export/import settings any idea when this will be fixed?
There's been a bit of talk on the Sansa forums about a pitch issue on the Clip v2 and the Fuze v2, where playback of files with a sampling rate of 44.1KHz is 2% slower than it should be due to a clock problem. I personally have an 8GB Clip and a 4GB Clip (of the v1 variety) and have compared playback between the two, and noticed that the 8GB does play slightly more slowly.
Rockbox on AMS sansa (at least the clipv1, fuzev1 and e200v2) plays with a sample rate error of about 0.15%. It is possible to reduce this to 0.04% error by either 1) changing the entire clocking scheme of the AMS sansa or by 2) enabling a separate PLL for generation of the sample rate clock.Option 1) is a bit controversial because it affects other sub-systems too (like maximum attainable CPU speed, display update rate, clocks for SD card access).Option 2) takes a bit more power from the battery than we currently do, reducing runtime by approximately 2.5%See the following patch for an implementation of option 2: http://www.rockbox.org/tracker/task/10906The same trick can probably also be used to reduce the error on clipv2 players.
Page created in 0.325 seconds with 21 queries.