myMPX
Advertisement



Hooray!!! Rockchip SDK!
Like Tree1Likes
Reply
Post New Thread
 
LinkBack Thread Tools
  #141 (permalink)  
Old 20th Apr 2009, 1:00 pm
knob's Avatar
Senior Member
Valued Member
 
Join Date: May 2007
Posts: 1,285
Default Re: Hooray!!! Rockchip SDK!


Been testing out the rk2606 sourcecode on my player.
Looking at the Lcd settings here is what I've been doing with PowerOnLcdinit()

Quote:
__attribute__((section(".sys_init_text,\"ax\"")))
void PowerOnLcdinit()// lcd settings when you first power on. Where the white screen problems and
//reversed display problems originate.
{
LCD_Reg_Set(0x0001,0x001B);//knob orig good
//LCD_Reg_Set(0x0001,0x011b);//knob reverses and inverts display!
LCD_Reg_Set(0x0002,0x0700);
LCD_Reg_Set(0x0003,0x7030);//knob orig good
//LCD_Reg_Set(0x0003,0x7055);//knob mixes display up!
//LCD_Reg_Set(0x0003,0x7100);//knob reverses display!
//LCD_Reg_Set(0x0003,0x8000);//knob makes white screen
//
//
LCD_Reg_Set(0x0007,0x0137);
LCD_Reg_Set(0x0008,0x0004);
//
//
//
//
LCD_Reg_Set(0x0010,0x4040);
LCD_Reg_Set(0x0011,0x0002);
//LCD_Reg_Set(0x0012,0x081d);//knob contrast too dark
LCD_Reg_Set(0x0012,0x0811);//knob display contrast ok
//LCD_Reg_Set(0x0012,0x0809);//knob contrast very high
//LCD_Reg_Set(0x0012,0x0800);//knob contrast increased too high!
LCD_Reg_Set(0x0013,0x3509);
//
//
//
LCD_Reg_Set(0x0021,0x0000);
//
//
//
LCD_Reg_Set(0x0030,0x0000);
LCD_Reg_Set(0x0031,0x0502);
LCD_Reg_Set(0x0032,0x0106);
LCD_Reg_Set(0x0033,0x0301);
LCD_Reg_Set(0x0034,0x0206);
LCD_Reg_Set(0x0035,0x0605);
LCD_Reg_Set(0x0036,0x0707);
LCD_Reg_Set(0x0037,0x0103);
LCD_Reg_Set(0x0038,0x0000);
LCD_Reg_Set(0x0039,0x0000);
LCD_Reg_Set(0x0040,0x0000);
LCD_Reg_Set(0x0041,0x0000);
LCD_Reg_Set(0x0042,0xEF00);
LCD_Reg_Set(0x0043,0x0000);
LCD_Reg_Set(0x0044,0xaf00);
LCD_Reg_Set(0x0045,0xef00);
//
LCD_Reg_Set(0x000b,0x8000);
}
Found the settings that affect the Contrast, And the Lcd reversal problem.
After playing around got the display looking pretty good now. :wink:

Need to look at the button settings a bit to try and get that in order, but the firmware is already usable on my player, I can navigate and play Mp3s and everything else seems to work as it should. :wink:

When I do a bit more work on the source and put more comments in I will upload it.

I am trying to see it anything can be done to help users who have lost their firmware and comment in the source the bits you need to tweak.

If anyone else want to have a play please bear in mind you must have a working backup firmware or you risk bricking your player and this firmware is only good for 2" rk2606 Rockchips with standard buttons, not touchscreens.
Reply With Quote
  #142 (permalink)  
Old 21st Apr 2009, 12:50 pm
Member
Keen on MPx players
 
Join Date: Sep 2007
Posts: 68
Default

KNOB, we need your build-skills for the rk27xx too!!! I would happily convert whatever comes out there into a BASE.RKW. Anyway great work, keep it up & hang on.
Reply With Quote
  #143 (permalink)  
Old 22nd Apr 2009, 12:41 am
WIZARD's Avatar
Senior Member
MPx Junkie
 
Join Date: Mar 2008
Posts: 300
Default

Any news about the firmware extractor for rk26xx ? :roll:
__________________
Heroes of Might and Magic V - The Best Game In The World !
Try to play !
Reply With Quote
  #144 (permalink)  
Old 27th Apr 2009, 3:06 pm
knob's Avatar
Senior Member
Valued Member
 
Join Date: May 2007
Posts: 1,285
Default

More firmware source code, this time complete for Rk2608 players!

RK2608_4G_DEMO Rockchip Micro firmware source code, the version, add text, pictures, aut SCM www.pudn.com

and a powerpoint tutorial for Rk26xx :-

RK26XX-chip-introduce This a speech coding relevant information right mp3/mp4 program design usef Communic www.pudn.com

download here too:-
http://www.sendspace.com/file/k467x8
__________________
-----------------------------------------------------------------------------------------------------------

Last edited by knob; 23rd Jun 2009 at 11:35 am.
Reply With Quote
  #145 (permalink)  
Old 28th Apr 2009, 1:05 am
New Member
 
Join Date: Apr 2009
Posts: 6
Default Re: Hooray!!! Rockchip SDK!

i have have an account there, if anyone wants it pm me
Reply With Quote
  #146 (permalink)  
Old 29th Apr 2009, 7:13 am
New Member
 
Join Date: Feb 2009
Posts: 17
Default Re: Hooray!!! Rockchip SDK!

i have new fwtools version 3.1.12.0! you have this already!?
__________________
Help me win a Meizu M8 register and press the red button under my picture on http://sjbbs.zol.com.cn/1/980_104.html
Audio&Video : OS-43
Reply With Quote
  #147 (permalink)  
Old 29th Apr 2009, 10:31 am
knob's Avatar
Senior Member
Valued Member
 
Join Date: May 2007
Posts: 1,285
Default

hi Benjy

No we don't have this version.
Can you please post a link or upload it someplace.?

The rk2608 firm doesn't compile with the older version, maybe 3.1.12.0 will work.
__________________
-----------------------------------------------------------------------------------------------------------
Reply With Quote
Sponsored Links
  #148 (permalink)  
Old 2nd May 2009, 7:46 am
knob's Avatar
Senior Member
Valued Member
 
Join Date: May 2007
Posts: 1,285
Default Re: Hooray!!! Rockchip SDK!

Been looking at fixing the button arrangement on the RK2606 firmware:-

Quote:
case KEY_VAL_UP_DOWN://knob Increases Volume in Music Screen

MusicDisplayBlock.DisplayFlag.bit.bVol = 1;
OutputVolumeInc();//knob Increases Volume in Music Screen
break;


case KEY_VAL_MENU_SHORT_UP://knob Decreases Volume in Music Screen

MusicDisplayBlock.DisplayFlag.bit.bVol = 1;
OutputVolumeDec();//knob Decreases Volume in Music Screen
break;
Reply With Quote
  #149 (permalink)  
Old 2nd May 2009, 5:14 pm
New Member
 
Join Date: May 2009
Posts: 2
Default

Sir can you help me??? i need firmware for my mp3 player with specification:

CHIP: HYNIX HY27UT088G2M
ATJ 2091 N
BOARD: MP3-910639 V:3
THANKS BEFORE
Reply With Quote
  #150 (permalink)  
Old 4th May 2009, 1:33 pm
New Member
 
Join Date: May 2008
Posts: 5
Default Re: Hooray!!! Rockchip SDK!

Quote:
Originally Posted by Benjy";p=&quot View Post
i have new fwtools version 3.1.12.0! you have this already!?
Hi benjy

Can you send me the fwtools 3.1.12.0 or tell me where to get them. By the way can it dump from 2608a chipset?

regards
Rob Oudendijk
Reply With Quote
Reply

Sponsored Links

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
NEW rockchip player (Rockchip RK27xx series) availability knob General Discussion 38 12th Nov 2008 10:47 am
Rockchip Editor: for Rockchip 27xx ALP1987 Support and How To 6 17th Oct 2008 5:25 pm


All times are GMT -7. The time now is 8:24 am.


Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2015, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0 RC 2
Back to Top

Designed by indiqo.media