Page 12 of 22 FirstFirst ... 21011121314 ... LastLast
Results 221 to 240 of 421

Rockbox Project (M6)

This is a discussion on Rockbox Project (M6) within the Community Development forums, part of the miniPlayer M6 / SL category; Originally Posted by Speechless That should produce equivalent code, a bit more succintly. - I'm Speechless. XOR toggles a bit, ...

  1. #221
    Passing By
    Join Date
    Apr 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by Speechless View Post

    That should produce equivalent code, a bit more succintly.

    - I'm Speechless.
    XOR toggles a bit, whereas &~ switches it off. Those are two different things, I would say.

  2. #222
    Passing By
    Join Date
    Feb 2007
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by denes View Post
    XOR toggles a bit, whereas &~ switches it off. Those are two different things, I would say.
    Correction: it would only replace the block of code serving as a toggle. Replacing (&~) with (^) wouldn't be equivalent.

    - I'm Speechless.
    Last edited by Speechless; 04-30-2008 at 01:02 AM. Reason: Wrong the first time.

  3. #223
    Junior Member
    Join Date
    Mar 2008
    Location
    Netherlands
    Posts
    72
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Speechless: thanks, that would indeed simplify the code a bit.

    Yesterday I tried to flash my M6SL with this home made test firmware of mine. It got stuck at "flashing firmware, please wait..". After a while I performed a hard reset, but the player seemed to stay off and not running my code (at least the backlight wasn't toggled). Eventually I was able to get into DFU mode and reflash with an official firmware. Maybe I can do some more experiments today.

  4. #224
    vcf
    vcf nincs online
    Member
    Join Date
    Apr 2007
    Posts
    120
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by markun View Post
    Speechless: thanks, that would indeed simplify the code a bit.

    Yesterday I tried to flash my M6SL with this home made test firmware of mine. It got stuck at "flashing firmware, please wait..". After a while I performed a hard reset, but the player seemed to stay off and not running my code (at least the backlight wasn't toggled). Eventually I was able to get into DFU mode and reflash with an official firmware. Maybe I can do some more experiments today.
    if help is need contact me. the code is very simple for me as well and i cant find any errors but i am not strong in programming

  5. #225
    Junior Member
    Join Date
    Mar 2008
    Location
    Netherlands
    Posts
    72
    Thanks
    0
    Thanked 0 Times in 0 Posts
    ok, today I did some more tests and this time merged the NAND loader with my test firmware (with the merger from DFU manager). The backlight now turns on when I press PLAY and turns off when I release it (which is not what should happen). I couldn't get the piezo to produce any sound. No idea if it's actually running my code. I'll keep you updated.

  6. #226
    Freshman
    Join Date
    Jan 2008
    Posts
    46
    Thanks
    0
    Thanked 0 Times in 0 Posts
    markun: You should put some key debouncing code here.

  7. #227
    Member
    Join Date
    Jan 2008
    Location
    Indonesia
    Posts
    106
    Thanks
    0
    Thanked 0 Times in 0 Posts
    kgb2008: what is "key debouncing code"?

  8. #228
    Junior Member
    Join Date
    Mar 2008
    Location
    Netherlands
    Posts
    72
    Thanks
    0
    Thanked 0 Times in 0 Posts
    wpyh: When pressing the key it might not go from 0 to 1 very cleanly but for example like this 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1. To 'debounce' you can for example add a little delay in the code after a key (un)press is detected.

  9. #229
    Member
    Join Date
    Jan 2008
    Location
    Indonesia
    Posts
    106
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Um... OK, I get it. Please let us know if you get results with it

  10. #230
    Member
    Join Date
    Jan 2008
    Location
    Indonesia
    Posts
    106
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Well, I'm just guessing, but it's possible that PDAT1 signals a key press or release event, and not the key status itself (whether the key is pressed or not).

    Really just guessing here.

  11. #231
    Passing By
    Join Date
    Jun 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts
    hmm and how is progress of rockbox?

  12. #232
    Junior Member
    Join Date
    Apr 2007
    Posts
    51
    Thanks
    0
    Thanked 0 Times in 0 Posts
    How many people are working on this project ? I can't wait to see rockbox working on my m6

  13. #233
    Junior Member
    Join Date
    Mar 2008
    Location
    Netherlands
    Posts
    72
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I guess I'm the only one programming and trying to run code right now (right?) Sorry for being a bit unproductive lately. I hope I'll get some more work done soon. Getting a small breakthrough (running some custom code) would be nice for motivation

    Next thing I'll try is to replace some code in an official firmware update to get my code running. After that, look how much I can change until it no longer works.
    Last edited by markun; 05-14-2008 at 10:52 PM.

  14. #234
    vcf
    vcf nincs online
    Member
    Join Date
    Apr 2007
    Posts
    120
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by markun View Post
    I guess I'm the only one programming and trying to run code right now (right?) Sorry for being a bit unproductive lately. I hope I'll get some more work done soon. Getting a small breakthrough (running some custom code) would be nice for motivation

    Next thing I'll try is to replace some code in an official firmware update to get my code running. After that, look how much I can change until it no longer works.
    you're right here. we are mostly noobs here. we can just to long tyring work like testing etc. all hope is on you

  15. #235
    Freshman
    Join Date
    May 2008
    Location
    Czech Rep.
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by wpyh View Post
    Well, I'm just guessing, but it's possible that PDAT1 signals a key press or release event, and not the key status itself (whether the key is pressed or not).

    Really just guessing here.
    i'd expect the status

  16. #236
    Administrator
    Join Date
    Mar 2007
    Location
    Budapest, Hungary
    Posts
    4,852
    Thanks
    262
    Thanked 1,140 Times in 438 Posts
    Any news from rockbox project? Does anybody working on it?

  17. #237
    Passing By
    Join Date
    Dec 2007
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts
    looks like this project is going nowhere...

  18. #238
    Founder
    Join Date
    Nov 2006
    Location
    Shenzhen
    Posts
    2,901
    Thanks
    133
    Thanked 266 Times in 79 Posts
    I think it's largely due to the fact that we only have one person who can code - markun.

    Maybe it's time to start a collection to buy some other Rockbox coders Meizu players too.

  19. #239
    vcf
    vcf nincs online
    Member
    Join Date
    Apr 2007
    Posts
    120
    Thanks
    0
    Thanked 0 Times in 0 Posts
    dont worry guys. the project hasnt died. just markun is a bit busy last time. in june there will be the rockbox dev's conference DevConEuro2008 < Main < TWiki
    there is going to be many work done. as you see meizu has 3(!) devs Meizu M6 - Marcoen Hirschberg, Daniel Stenberg,Frank Gevaerts

  20. #240
    Passing By
    Join Date
    Feb 2007
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by Err0r View Post
    I think it's largely due to the fact that we only have one person who can code - markun.
    Not so. There are a number of individuals here who can code. I think it's largely a matter of someone taking the lead, for others to follow; then we'll see how much skills are available. The skills available are largely shrouded, at present, methinks.

    Personally, I have some rusty C and assembly language programming experience, which I haven't had much recent opportunity to exploit. I've not had any experience with embedded programming, and was waiting for markun to give some pointers.

    Quote Originally Posted by Err0r View Post
    Maybe it's time to start a collection to buy some other Rockbox coders Meizu players too.
    You mean some bribery and corruption? Hahaha.... Well, as you've mentioned that, I'm somewhat partial to a donation of a second Meizu player, myself, if the feeling takes you. As for cash donations, please direct all donations to... Wait a moment... I'lll get back to you. I'm in the process of heading out to buy a large bucket.

    - I'm Speechless

 

 
Page 12 of 22 FirstFirst ... 21011121314 ... LastLast

Similar Threads

  1. Rockbox! - CLOSED
    By Sammy in forum Community Development
    Replies: 5
    Last Post: 02-29-2008, 01:55 PM
  2. Rockbox - CLOSED
    By Ourkim in forum Community Development
    Replies: 51
    Last Post: 02-29-2008, 01:54 PM
  3. Rockbox für Meizu M6
    By mojooo in forum German
    Replies: 2
    Last Post: 01-30-2008, 12:17 PM
  4. Rockbox on meizu m3???
    By Exekias in forum Technical
    Replies: 1
    Last Post: 12-07-2007, 04:22 AM
  5. [Project] German FAQ-Page for M6
    By ExilWessi in forum General Meizu M6
    Replies: 2
    Last Post: 03-30-2007, 10:37 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •