- Status Closed
- Percent Complete
- Task Type Patches
- Category Plugins
- Assigned To No-one
- Operating System
- Severity Low
- Priority Very Low
- Reported Version
- Due in Version Undecided
-
Due Date
Undecided
- Votes
- Private
Attached to Project: Rockbox
Opened by diddystar5 - 2004-08-03
Last edited by linusnielsen - 2004-08-21
Opened by diddystar5 - 2004-08-03
Last edited by linusnielsen - 2004-08-21
FS#2292 - New VU Meter
I took some time to work on the VU Meter.
Changes are:
-A new digital meter
-Logarithmic scale became smaller (the calc_db in the
peakmeter was tried, but did not work well)
-Saves settings
-Looks better
Thanks
Lee P
Loading...
Available keyboard shortcuts
- Alt + ⇧ Shift + l Login Dialog / Logout
- Alt + ⇧ Shift + a Add new task
- Alt + ⇧ Shift + m My searches
- Alt + ⇧ Shift + t focus taskid search
Tasklist
- o open selected task
- j move cursor down
- k move cursor up
Task Details
- n Next task
- p Previous task
- Alt + ⇧ Shift + e ↵ Enter Edit this task
- Alt + ⇧ Shift + w watch task
- Alt + ⇧ Shift + y Close Task
Task Editing
- Alt + ⇧ Shift + s save task
Fixed the needle arch to look real (the screen is .8 aspect
ratio) and fixed the needle cover, which was a pixle off ;)
Lee
Forgot to add Thanks to amiconn for helping me get the
arch to look right with the .8 ratio!
The minimeters were requested back.
I should have one more update out soon.
This shouldbe the last update.
New things are:
-Decay and scale works in digital
-Settings reworked
-Made things const
-Optimized code with unsigned short ints
-Added a help hint on first use
Before you use this:
Delete your old settings file in /.rockbox/rocks/.vu_meter,
otherwise the settings will not work right right.
Lee
Default setting for digital dBfs scale should be true.
FYI, short int is not a good choice for this CPU, since it
has 32-bit registers. Use int instead.
Thanks for pointing that out, I would have never noticed
myself. ;)
The source code is updated.