Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
translations translations
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Thank You for your continued support and contributions!

+  Rockbox Technical Forums
|-+  Rockbox General
| |-+  Announcements
| | |-+  BUTTON CHANGES - REPORT PROBLEMS HERE
« previous next »
  • Print
Pages: 1 ... 11 12 [13] 14

Author Topic: BUTTON CHANGES - REPORT PROBLEMS HERE  (Read 120103 times)

Offline Atheistic Freedom

  • Member
  • *
  • Posts: 173
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #180 on: November 20, 2006, 10:17:58 PM »
Sorry, but Bubbles does not work.

It was seriously perfect before whoever decided to mess with it, and I can only fear the same with the Metronome (I'll check up on later).

To move the "cannon," one must now move it by flicking their thumb damn fast in short strokes, because it will only take the scrolling in short increments, not a continuous sweeping motion like before.  And even with the "flicking," the cannon moves literally a hair's width side to side.

In short, it's still (very) broken, and I do not see why the button changes were implemented in the first place.
Logged

Offline JdGordon

  • Member
  • *
  • Posts: 1817
  • Constantly breaking stuff
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #181 on: November 20, 2006, 10:28:48 PM »
how about saying which target the problem is with?
Logged


Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline Atheistic Freedom

  • Member
  • *
  • Posts: 173
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #182 on: November 21, 2006, 12:39:59 AM »
Darn it, I knew I forgot something vital.

iPod - 5G.

Thank you for looking into it.
Logged

Offline JdGordon

  • Member
  • *
  • Posts: 1817
  • Constantly breaking stuff
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #183 on: November 26, 2006, 03:50:40 AM »
metronome fixed, fixing my dads laptop then ill grab my sisters nano and sort out the bubbles problem
Logged


Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline MichaelG

  • Member
  • *
  • Posts: 29
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #184 on: November 26, 2006, 03:55:25 AM »
Iriver H120.

In Bookmark History you can delete Bookmarks with Buttons On+Navi. That doesen't work. I have the Last Build working.

MfG Michael
Logged

Offline JdGordon

  • Member
  • *
  • Posts: 1817
  • Constantly breaking stuff
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #185 on: November 26, 2006, 04:19:04 AM »
yes, bookmark screen is horrible and (imho) needs to be completly refactored.... it will get done when someone can figure out a nice way to do it

bubbles is fixed for the ipod in cvs as of now
« Last Edit: November 26, 2006, 04:36:31 AM by jdgordon »
Logged


Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline Atheistic Freedom

  • Member
  • *
  • Posts: 173
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #186 on: November 26, 2006, 08:05:13 AM »
Thank you jdgordon for the fixes of both the Metronome and the Bubbles plugins.  I am uploading it on my iPod right now so I can test them out while I wait out in the cold for a Wii  :D
Logged

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 920
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #187 on: November 27, 2006, 04:54:39 AM »
Quote from: MichaelG on November 26, 2006, 03:55:25 AM
Iriver H120.

In Bookmark History you can delete Bookmarks with Buttons On+Navi. That doesen't work. I have the Last Build working.

MfG Michael
The record button deletes bookmarks, as it says on the screen.

EDIT: Ahh, I see you have sorted your problem here:
http://forums.rockbox.org/index.php?topic=7480.0
Your lang file is out of date.
« Last Edit: November 27, 2006, 05:03:53 AM by Mmmm »
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

Offline slash14

  • Member
  • *
  • Posts: 5
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #188 on: December 02, 2006, 09:25:37 AM »
Quote from: Atheistic Freedom on November 26, 2006, 08:05:13 AM
Thank you jdgordon for the fixes of both the Metronome and the Bubbles plugins.
Hi everyone.

Seems that the Rec button has been disabled in the Metronome plugin, so synchronization can't be performed anymore (latest Rockbox edition and metronome.c v1.34)

Any way to fix this please ? I'm not used to the Rockbox development to correct this myself right now.

Thank you.
« Last Edit: December 02, 2006, 10:31:08 AM by slash14 »
Logged

Offline slash14

  • Member
  • *
  • Posts: 5
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #189 on: December 02, 2006, 11:51:17 AM »
An answer to my own previous question:
With the following trick, it works (refers to the very end of metronome.c):
Code: [Select]

#ifdef  METRONOME_TAP
            case METRONOME_TAP:
                tap();
                break;
#endif

#if METRONOME_SYNC
            case METRONOME_SYNC:
                minitick = period;
                break;
#endif

            default:

to become as follows:

Code: [Select]
#ifdef  METRONOME_TAP
            case METRONOME_TAP:
                tap();
                break;
#endif

            case METRONOME_SYNC:
                minitick = period;
                break;

            default:

Do you think it was an error in the original source code, or should I consider myself lucky wih this trick to make it work ? I'm not a very good developper / coder, sometimes I make things work without understanding why ;)
« Last Edit: December 02, 2006, 11:54:34 AM by slash14 »
Logged

Offline pabouk

  • Member
  • *
  • Posts: 387
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #190 on: December 02, 2006, 02:43:18 PM »
Your correction works but the correct way should probably be:
Code: [Select]
#ifdef  METRONOME_TAP
            case METRONOME_TAP:
                tap();
                break;
#endif

#ifdef METRONOME_SYNC
            case METRONOME_SYNC:
                minitick = period;
                break;
#endif

            default:
I.e. support the option only if the symbol is defined.
Logged

Offline slash14

  • Member
  • *
  • Posts: 5
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #191 on: December 02, 2006, 02:47:06 PM »
Yeah, I also tested it, but it didn't work.

My device is an iHP120.

I also removed the previous #ifdef just before the METRONOME_TAP and it didn't change anything : with or without this #ifdef, tapping the tempo will work ...

Thanks for your answer anyway.
Logged

Offline JdGordon

  • Member
  • *
  • Posts: 1817
  • Constantly breaking stuff
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #192 on: December 02, 2006, 07:17:45 PM »
Ive just replaced the #if with #iifdef, it should work...
It cant be completly removed because it will causee builds errors in the other targets.

actually, that change shouldnt make any differenece... iif it still doesnt  work let me know and ill try agaain
« Last Edit: December 02, 2006, 07:22:04 PM by jdgordon »
Logged


Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline pabouk

  • Member
  • *
  • Posts: 387
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #193 on: December 03, 2006, 09:30:24 AM »
Slash14 was right. Unfortunately it still does not work.
Logged

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 920
Re: BUTTON CHANGES - REPORT PROBLEMS HERE
« Reply #194 on: December 03, 2006, 11:36:51 AM »
Not surprising really seeing as METRONOME_SYNC is never defined...
« Last Edit: December 03, 2006, 11:49:54 AM by Mmmm »
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

  • Print
Pages: 1 ... 11 12 [13] 14
« previous next »
+  Rockbox Technical Forums
|-+  Rockbox General
| |-+  Announcements
| | |-+  BUTTON CHANGES - REPORT PROBLEMS HERE
 

  • SMF 2.0.19 | SMF © 2021, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.109 seconds with 20 queries.