All Projects

IDProjectTask TypeCategorySeveritySummaryOpened
 12681 RockboxBugsRecordingLow When trying to enter REC screen player freezes 2012-05-20 Task Description

Introduced in da6cebb6b0b17b4a75a2bd4f51b7cf70b5dafe40 according to bisecting. Tested on MPIO HD200/300 by me and Iriver H300 by petur.

 12680 RockboxBugsRecordingLow Rec screen reports "The disk is full. Press OFF to cont ...2012-05-201 Task Description

Introduced by c9bcbe202d010234f76d1046880a790fe2c3a067. There is 20GB+ free space on the player. Tested on MPIO HD200 and HD300.

 12366 RockboxPatchesRbutilLow polish translation for Rockbox Utility 2011-11-041 Task Description

My attempt to finish Rbutil polish translation.

 12356 RockboxBugsMusic playbackLow next track advances when skip in repeat one mode 2011-10-28121 Task Description

Way to reproduce:
1) select file from file browser
2) change repeat to ‘one’ 3) skip doesn’t change the file (that is expected) but next track displayed in WPS advances

 12331 RockboxPatchesBuild environmentLow move PortalPlayer stuff to subdir 2011-10-121 Task Description

This patch moves pp stuff to its own subdir in target tree. In order to not touch too much this also extends our target tree scheme to $t_cpu/$t_soc/$t_manufacturer/$t_model
Don’t be scared by patch size - no functional changes, only files move (+ removed a few duplicates)

 12322 RockboxBugsBattery/ChargingLow Switch to SYS mode on arm 2011-10-0721 Task Description

Currently our code runs in SVC mode most of the time. This isn’t very wise since a) this prevents us from using SWI because b) entering SWI would corrupt LR. Moreover our current SWI handler simply returns and this may potentially produce errors hard to track down. This patch do two things a) setups SYS mode as default b) explicitly calls UIE on SWI.

 12302 RockboxPatchesUser InterfaceLow Add backtrace to the panic screen on ARM 2011-09-30155 Task Description

Port (rather trivial) of unwarminder http://www.mcternan.me.uk/ArmStackUnwinding/ This gives backtrace in Panic screen in addition to PC value

 12137 RockboxPatchesOperating System/DriversLow rockchip rk27xx target 2011-05-291 Task Description

What works:
+ LCD (but suboptimal)
+ backlight (no brightness setting)
+ sd driver (quite complete)
+ buttons
+ timers (aka kernel tick)

Not tested:
* i2c driver
* adc driver

The bootloader is playground for hacking and testing.

Three utilities are also provided:
* rk27load - it alows to run custom code by means of rockchip recovery mode
* rkusbtool - sends ‘private’ scsi commands to rockchip OF
* rkboottoll - inspects, extracts and unpacks the content of Rock27Boot.bin recovery file.

 11937 RockboxPatchesLanguageLow automatic resume - polish translation 2011-02-131 Task Description

Add missing translation connected with automatic resume feature

 11893 RockboxPatchesBuild environmentLow wpsbuild.pl rewrite 2011-01-2023 Task Description

This is complete rewrite of wpsbuild.pl. The differences from old wpsbuild are:
1) Now it uses xml format for WPSLIST file (to make it more consistent) with help of XML::Simple CPAN module.
2) It scans all skin files for graphics needed (not only .wps)
3) Takes lcd dimensions parsing firmware/export/config/modelname.h file directly (instead of bizarre gcc preprocessing and regexp matching)
4) Should be easy to extend (for example to include rec skins if this ever happens)

At first I was thinking about fixing fms support in wpsbuild.pl but it was very hard to follow the code and writing something new from scratch was much easier.

 11831 RockboxBugsManualLow %Rr, %Rh, %Rn, %Rs not documented 2010-12-231 Task Description

in apps/radio/radio_skin.c one can find such lines:
#if CONFIG_CODEC != SWCODEC && !defined(SIMULATOR)

      "%?Rr<%Sx(Time:) %Rh:%Rn:%Rs|%?St(prerecording time)<%pm|%Sx(Prerecord Time) %Rs>>\n"

#endif

Tags used there are not documented.

 11829 RockboxBugsThemesLow %tx tag causes sim segfault 2010-12-2312 Task Description

Here are two simple .fms attached which use %tx tag as conditional. One crashes sim the second works just fine.

 11824 RockboxPatchesThemesLow cabbie v2 radio skin for 160x128x2 2010-12-2223 Task Description

Here is my attempt to make UI more uniform. The only thing which is dropped from default fm screen is the hwcodec recording info. I didn’t check if any hwcodec hardware use 160x128x2 screen so I don’t know if this is a real issue.

 11818 RockboxBugsBattery/ChargingLow rework ppmviewer to fit our shiny new imageviewer frame ...2010-12-2043 Task Description

This patch moves ppm decoder to imageviewer.

11744RockboxBugsManualLowwarning about \float@addtolists when building manual2010-11-081 Task Description

(./version.tex)) [2] [3]
1.

Class scrreprt Warning: \float@addtolists
You should use the features of package
instead of
Support for \float@addtolists may be removed
`scrreprt’ soon .

This is the warning text I get. We should probably update the syntax before it get broken.

 11735 RockboxPatchesOperating System/DriversLow move dbg_hw_info() to target tree 2010-11-0722 Task Description

dbg_hw_info() for SH, COLDFIRE and PP is defined in apps/debug_menu.c with heavy ifedeffing. This patch moves implementation to the target tree.

 11731 RockboxPatchesManualLow manual for MPIO HD200 2010-11-062 Task Description

Uncomplete (no manual for plugins although screenshots are in place) manual for MPIO.

 11712 RockboxPatchesOperating System/DriversLow move dbg_port() to target tree 2010-11-0112 Task Description

SH, COLDFIRE and PP have code for dbg_port() in apps/debug_menu.c while newer targets have this implemented in target tree. This patch moves this functions to the target tree for mentioned platforms.

 11697 RockboxBugsBuild environmentLow make VERSION=x.y broken 2010-10-2221 Task Description

When releasing bootloader one has to make ‘versioned build’. The instructions I obtain on IRC states that building with make VERSION=x.y should do the trick. However this is broken since r26320. Below is a patch which fixes this for me but I am not an expert of the buildsystem.

 11641 RockboxPatchesPluginsLow extend and fix png support in imageviewer plugin 2010-09-241718 Task Description

1) Code cleanups - move PNG color types to defines (instead of magic numbers

   used directly). Change arithmetics in a few palces to use shifts instead of
   muls.

2) Comment out tIMe chunk processing as we do not check nor set timestamp of

   png file.

3) Rework LodePNG_convert() to output pixels in rb specific format (greylib or

   native).

4) Enable support for greyscale targets.
5) Change optimization to -Os (from -O3)

This was tested in the sim *only* so tests on different real hardware is welcome. The most interesting is mrobe500 (as it has different native pixelformat then any other color target) and greyscale targets

 11634 RockboxBugsSettingsLow settings_load_config() calls config_save() 2010-09-2041 Task Description

I found accidentally that settings_load_config() which is called at startup of the rb calls config_save(). This means that config file is rewiriten on every system startup. This can impact flash wear.

look at apps/settings.c:370

 11534 RockboxPatchesRecordingLow make gain/volume step as defined in audiohw_settings[] 2010-08-1311 Task Description

Currently when inc/dec gain or volume in recscreen step is always 0.1dB. Many (most?) drivers do not use such small step however. The step IS defined in audiohw_settings[] in each driver.

 11531 RockboxPatchesDriversLow wm8751/wm8750 driver rework 2010-08-1043 Task Description

This patch changes internal logic of the driver to allow easy utilization of all functions provided by those codecs. Besides it enables additional features:
- Bass cutoff filter characteristic setup (WM8751, WM8750)
- Treble cutoff filter characteristic setup (WM8751, WM8750)
- Enhance 3D (WM8750)
- ALC and NGAT when recording (WM8750)
- signal amplification in digital domain when recording in range -97dB … +30dB (WM8750)

 11413 RockboxPatchesPluginsLow create lcdlinear printout from test_grey using natural  ...2010-06-171 Task Description

This patch changes the way lcdlinear interpolation is done.

 11324 RockboxPatchesBattery/ChargingLow change view_battery() graph to be curve not bars 2010-05-2875 Task Description

See http://img218.imageshack.us/img218/2459/dscn3549a.jpg how it looks like on mini 1G

 11289 RockboxPatchesPluginsLow add memset and memcpy benchmarks to test_mem plugin 2010-05-181 Task Description

As in summary.

 11283 RockboxPatchesDriversLow Integrate byte swap of ata word into ata-as-coldfire.S 2010-05-1732 Task Description

MPIO HD200 has byte swapped ata lines, all other coldfire based devices uses plain connection.

 11254 RockboxPatchesUser InterfaceLow Simple animation in USB screen 2010-05-08116 Task Description

I always wonder when in USB mode if device is working or just hang. This patch adds simple animation to usb screen. This is rather proof-of-concept than full-fledged patch. I include here only single additional bitmap so to test effect of this patch please build sim for MPIO HD200 and press u to enter simulated USB mode.

 11189 RockboxPatchesDriversLow separate mas35xx lowlevel stuff 2010-04-07119 Task Description

I did my best to separate mas lowlevel stuff from sound.c. I made various cleanups to handle mas code in more consistent way. I do not have any Archos device so this is not tested at all (although it compiles cleanly).

 11153 RockboxPatchesBuild environmentLow modify plugin.lds to be processor specyfic instead of t ...2010-03-301 Task Description

The memory base addresses are set in crt0.S which is shared by all coldfire based DAPs. The only difference is in size of iram between mcf5249 and mcf5250 based target. This patch changes target specyfic ifdefs to processor specyfic ifdefs than.

 11151 RockboxPatchesUtilsLow small fix in handling modelname in scramble.c 2010-03-291 Task Description

In scramble.c we have “bad programing practice” to do strcpy to fixed size variable. This small patch fixes this.

 11137 RockboxPatchesOperating System/DriversLow This is initial patch that adds MPIO HD200 as a new tar ...2010-03-221114 Task Description

Included are:
- basic bootloader (but install instruction is not described yet)
- port specyfic files
- UI simulator

currently it is possible to load bootloader int iram with BDM and than boot rockbox. Many things does not work yet.

Showing tasks 1 - 32 of 32 Page 1 of 1

Available keyboard shortcuts

Tasklist

Task Details

Task Editing