mailer | 7 Oct 23:09

gevaerts: r18740 - in trunk: bootloader firmware/target/arm/s5l8700/meizu-m3

Date: 2008-10-07 23:12:03 +0200 (Tue, 07 Oct 2008)
New Revision: 18740

Log Message:
lcd now shows things on the old-style Meizu M3.
It needs to be re-tested on the new-style, colours are wrong, and timing loops need to be reviewed

Modified:
   trunk/bootloader/meizu_m3.c
   trunk/firmware/target/arm/s5l8700/meizu-m3/lcd-m3.c

Modified: trunk/bootloader/meizu_m3.c
===================================================================
--- trunk/bootloader/meizu_m3.c	2008-10-07 20:52:42 UTC (rev 18739)
+++ trunk/bootloader/meizu_m3.c	2008-10-07 21:12:03 UTC (rev 18740)
@@ -44,7 +44,9 @@
 #include "rbunicode.h"
 #include "usb.h"
 #include "qt1106.h"
+#include "rockboxlogo.h"

+
 #include <stdarg.h>

 char version[] = APPSVERSION;
@@ -105,12 +107,14 @@
     int tmpval;

     /* set clock to 200 MHz */
+    #if 0
(Continue reading)

mailer | 7 Oct 22:52

amiconn: r18739 - trunk/apps/codecs/demac/libdemac

Date: 2008-10-07 22:52:42 +0200 (Tue, 07 Oct 2008)
New Revision: 18739

Log Message:
Another minor improvement: better pipelining and one less register used in vector addition/ subtraction.

Modified:
   trunk/apps/codecs/demac/libdemac/vector_math16_armv6.h

Modified: trunk/apps/codecs/demac/libdemac/vector_math16_armv6.h
===================================================================
--- trunk/apps/codecs/demac/libdemac/vector_math16_armv6.h	2008-10-07 20:24:41 UTC (rev 18738)
+++ trunk/apps/codecs/demac/libdemac/vector_math16_armv6.h	2008-10-07 20:52:42 UTC (rev 18739)
@@ -39,37 +39,38 @@

     "10:                             \n"
         "ldrh    r4, [%[v2]], #2     \n"
+        "ldr     r5, [%[v2]], #4     \n"
         "mov     r4, r4, lsl #16     \n"
     "1:                              \n"
-        "ldmia   %[v2]!, {r5-r8}     \n"
+        "ldmia   %[v2]!, {r6-r7}     \n"
         "ldmia   %[v1],  {r0-r3}     \n"
         "mov     r5, r5, ror #16     \n"
         "pkhtb   r4, r5, r4, asr #16 \n"
         "sadd16  r0, r0, r4          \n"
         "pkhbt   r5, r5, r6, lsl #16 \n"
         "sadd16  r1, r1, r5          \n"
+        "ldmia   %[v2]!, {r4-r5}     \n"
         "mov     r7, r7, ror #16     \n"
(Continue reading)

mailer | 7 Oct 22:22

mcuelenaere: r18738 - trunk/firmware/target/mips/ingenic_jz47xx/onda_vx767

Date: 2008-10-07 22:24:41 +0200 (Tue, 07 Oct 2008)
New Revision: 18738

Log Message:
Forgot one ...

Modified:
   trunk/firmware/target/mips/ingenic_jz47xx/onda_vx767/lcd-ondavx767.c

Modified: trunk/firmware/target/mips/ingenic_jz47xx/onda_vx767/lcd-ondavx767.c
===================================================================
--- trunk/firmware/target/mips/ingenic_jz47xx/onda_vx767/lcd-ondavx767.c	2008-10-07 20:23:56
UTC (rev 18737)
+++ trunk/firmware/target/mips/ingenic_jz47xx/onda_vx767/lcd-ondavx767.c	2008-10-07 20:24:41
UTC (rev 18738)
@@ -23,15 +23,15 @@
 #include "jz4740.h"
 #include "lcd-target.h"

-#define PIN_CS_N 	(32*1+17) /* Chip select */
+#define PIN_CS_N     (32*1+17) /* Chip select */
 #define PIN_RESET_N (32*1+18) /* Reset */
 #define PIN_UNK_N   (32*2+19)

-#define my__gpio_as_lcd_16bit()			\
-do {						\
-	REG_GPIO_PXFUNS(2) = 0x0014ffff;	\
-	REG_GPIO_PXSELC(2) = 0x0014ffff;	\
-	REG_GPIO_PXPES(2) = 0x0014ffff;		\
+#define my__gpio_as_lcd_16bit()            \
(Continue reading)

mailer | 7 Oct 22:22

mcuelenaere: r18737 - in trunk/firmware: . export

Date: 2008-10-07 22:23:56 +0200 (Tue, 07 Oct 2008)
New Revision: 18737

Log Message:
Fix TABs and get rid of HAVE_BUTTON_HOLD

Modified:
   trunk/firmware/export/config-creativezv.h
   trunk/firmware/export/config-creativezvm.h
   trunk/firmware/export/config-creativezvm60gb.h
   trunk/firmware/export/config-ondavx747.h
   trunk/firmware/export/config-ondavx767.h
   trunk/firmware/export/jz4740.h
   trunk/firmware/thread.c

Modified: trunk/firmware/export/config-creativezv.h
===================================================================
--- trunk/firmware/export/config-creativezv.h	2008-10-07 19:40:17 UTC (rev 18736)
+++ trunk/firmware/export/config-creativezv.h	2008-10-07 20:23:56 UTC (rev 18737)
@@ -73,7 +73,6 @@
 #define HAVE_LCD_ENABLE

 #define CONFIG_KEYPAD CREATIVEZV_PAD
-#define HAVE_BUTTON_HOLD
 #define HAVE_HEADPHONE_DETECTION
 //#define HAVE_TOUCHPAD

Modified: trunk/firmware/export/config-creativezvm.h
===================================================================
--- trunk/firmware/export/config-creativezvm.h	2008-10-07 19:40:17 UTC (rev 18736)
(Continue reading)

mailer | 7 Oct 21:39

amiconn: r18736 - trunk/apps/codecs/demac/libdemac

Date: 2008-10-07 21:40:17 +0200 (Tue, 07 Oct 2008)
New Revision: 18736

Log Message:
APE: Further ARMv6 filter optimisations: Save 4 'ror's per round by utilising the shift feature of the
'pack halfword' instructions in the unaligned vector addition/ subtraction, better pipelining in the
aligned scalarproduct(), and a new method to calculate the unaligned scalarproduct().

Modified:
   trunk/apps/codecs/demac/libdemac/vector_math16_armv6.h

Modified: trunk/apps/codecs/demac/libdemac/vector_math16_armv6.h
===================================================================
--- trunk/apps/codecs/demac/libdemac/vector_math16_armv6.h	2008-10-07 19:37:33 UTC (rev 18735)
+++ trunk/apps/codecs/demac/libdemac/vector_math16_armv6.h	2008-10-07 19:40:17 UTC (rev 18736)
@@ -39,36 +39,33 @@

     "10:                             \n"
         "ldrh    r4, [%[v2]], #2     \n"
+        "mov     r4, r4, lsl #16     \n"
     "1:                              \n"
         "ldmia   %[v2]!, {r5-r8}     \n"
         "ldmia   %[v1],  {r0-r3}     \n"
         "mov     r5, r5, ror #16     \n"
-        "pkhbt   r4, r4, r5          \n"
+        "pkhtb   r4, r5, r4, asr #16 \n"
         "sadd16  r0, r0, r4          \n"
-        "mov     r6, r6, ror #16     \n"
-        "pkhbt   r5, r5, r6          \n"
+        "pkhbt   r5, r5, r6, lsl #16 \n"
(Continue reading)

mailer | 7 Oct 21:35

gevaerts: r18735 - in trunk: apps apps/menus apps/plugins apps/plugins/mpegplayer firmware firmware/export

Date: 2008-10-07 21:37:33 +0200 (Tue, 07 Oct 2008)
New Revision: 18735

Log Message:
add HAVE_DISK_STORAGE, and use that instead of HAVE_FLASH_STORAGE when checking for an actual disk (i.e.
related to spindown, skipping,...)

Modified:
   trunk/apps/features.txt
   trunk/apps/menus/playback_menu.c
   trunk/apps/menus/settings_menu.c
   trunk/apps/playback.c
   trunk/apps/playlist.c
   trunk/apps/plugins/jpeg.c
   trunk/apps/plugins/mpegplayer/stream_mgr.h
   trunk/apps/plugins/video.c
   trunk/apps/settings.c
   trunk/apps/settings.h
   trunk/apps/settings_list.c
   trunk/apps/tagtree.c
   trunk/firmware/export/audio.h
   trunk/firmware/export/config-creativezv.h
   trunk/firmware/export/config-creativezvm.h
   trunk/firmware/export/config-creativezvm60gb.h
   trunk/firmware/export/config-fmrecorder.h
   trunk/firmware/export/config-gigabeat-s.h
   trunk/firmware/export/config-gigabeat.h
   trunk/firmware/export/config-h10.h
   trunk/firmware/export/config-h100.h
   trunk/firmware/export/config-h10_5gb.h
(Continue reading)

mailer | 7 Oct 21:05

mcuelenaere: r18734 - in trunk/firmware: export target/arm/tms320dm320/creative-zvm

Date: 2008-10-07 21:07:33 +0200 (Tue, 07 Oct 2008)
New Revision: 18734

Log Message:
Correct HAS_BUTTON_HOLD

Modified:
   trunk/firmware/export/config-creativezv.h
   trunk/firmware/export/config-creativezvm.h
   trunk/firmware/export/config-creativezvm60gb.h
   trunk/firmware/export/config-ondavx747.h
   trunk/firmware/export/config-ondavx767.h
   trunk/firmware/target/arm/tms320dm320/creative-zvm/button-target.h

Modified: trunk/firmware/export/config-creativezv.h
===================================================================
--- trunk/firmware/export/config-creativezv.h	2008-10-07 18:49:39 UTC (rev 18733)
+++ trunk/firmware/export/config-creativezv.h	2008-10-07 19:07:33 UTC (rev 18734)
@@ -73,7 +73,7 @@
 #define HAVE_LCD_ENABLE

 #define CONFIG_KEYPAD CREATIVEZV_PAD
-#define HAS_BUTTON_HOLD
+#define HAVE_BUTTON_HOLD
 #define HAVE_HEADPHONE_DETECTION
 //#define HAVE_TOUCHPAD

Modified: trunk/firmware/export/config-creativezvm.h
===================================================================
--- trunk/firmware/export/config-creativezvm.h	2008-10-07 18:49:39 UTC (rev 18733)
(Continue reading)

mailer | 7 Oct 20:48

lenzone10: r18733 - trunk/apps/lang

Date: 2008-10-07 20:49:39 +0200 (Tue, 07 Oct 2008)
New Revision: 18733

Log Message:
Updated italian translation file.

Modified:
   trunk/apps/lang/italiano.lang

Modified: trunk/apps/lang/italiano.lang
===================================================================
--- trunk/apps/lang/italiano.lang	2008-10-07 18:39:44 UTC (rev 18732)
+++ trunk/apps/lang/italiano.lang	2008-10-07 18:49:39 UTC (rev 18733)
@@ -6927,16 +6927,19 @@
   user:
   <source>
     *: none
+    multivolume: "HD1"
     e200,c200: "mSD:"
     ondio*: "MMC:"
   </source>
   <dest>
     *: none
+    multivolume: "HD1"
     e200,c200: "MSD:"
     ondio*: "MMC:"
   </dest>
   <voice>
     *: none
+    multivolume: "HD 1"
(Continue reading)

mailer | 7 Oct 20:35

robert: r18732 - in trunk: apps apps/metadata firmware firmware/export

Date: 2008-10-07 20:39:44 +0200 (Tue, 07 Oct 2008)
New Revision: 18732

Log Message:
FS#9139 - support for ver 1.1 scrobbler log files. Upload any old files first - uploading software may need
updating, see the LastFMLog wiki page

Modified:
   trunk/apps/metadata/asf.c
   trunk/apps/metadata/metadata_common.c
   trunk/apps/metadata/mp4.c
   trunk/apps/scrobbler.c
   trunk/firmware/export/id3.h
   trunk/firmware/id3.c

Modified: trunk/apps/metadata/asf.c
===================================================================
--- trunk/apps/metadata/asf.c	2008-10-07 17:03:24 UTC (rev 18731)
+++ trunk/apps/metadata/asf.c	2008-10-07 18:39:44 UTC (rev 18732)
@@ -465,6 +465,9 @@
                                 id3buf = value;
                                 id3buf_remaining = buf_len;
                             }
+                        } else if (!strcmp("MusicBrainz/Track Id", utf8buf)) {
+                            id3->mb_track_id = id3buf;
+                            asf_utf16LEdecode(fd, length, &id3buf, &id3buf_remaining);
                         } else {
                             lseek(fd, length, SEEK_CUR);
                         }

(Continue reading)

mailer | 7 Oct 19:01

marcguay: r18731 - trunk/manual/getting_started

Date: 2008-10-07 19:03:24 +0200 (Tue, 07 Oct 2008)
New Revision: 18731

Log Message:
Update the release version part of the installation section to mention 3.0

Modified:
   trunk/manual/getting_started/installation.tex

Modified: trunk/manual/getting_started/installation.tex
===================================================================
--- trunk/manual/getting_started/installation.tex	2008-10-07 16:38:28 UTC (rev 18730)
+++ trunk/manual/getting_started/installation.tex	2008-10-07 17:03:24 UTC (rev 18731)
@@ -219,16 +219,10 @@

 \begin{description}

-\item[Release.]
-  \opt{archos}{The release version is the latest stable release, free
-      of known critical bugs. The current stable release of Rockbox, version
-      2.5, is available at \url{http://www.rockbox.org/download/}.
-  }
-  \opt{swcodec}{
-      There has not yet been a stable release for the \playername{}. Until
-      there is one, use a current build.
-  }
-
+\item[Release.] The release version is the latest stable release, free
+  of known critical bugs. The current stable release of Rockbox, version
+  3.0, is available at \url{http://www.rockbox.org/download/}.
(Continue reading)

mailer | 7 Oct 18:36

vitja: r18730 - in trunk: apps/plugins apps/plugins/midi apps/plugins/mpegplayer apps/plugins/pacbox apps/plugins/reversi apps/plugins/sudoku apps/plugins/zxbox firmware/export

Date: 2008-10-07 18:38:28 +0200 (Tue, 07 Oct 2008)
New Revision: 18730

Log Message:
IAUDIO67_PAD: Add keymaps for most of the plugins, they are not all tested yet.
IAUDIO7: Define MODEL_NAME in config

Modified:
   trunk/apps/plugins/calculator.c
   trunk/apps/plugins/chessclock.c
   trunk/apps/plugins/chopper.c
   trunk/apps/plugins/cube.c
   trunk/apps/plugins/dict.c
   trunk/apps/plugins/fireworks.c
   trunk/apps/plugins/invadrox.c
   trunk/apps/plugins/jewels.c
   trunk/apps/plugins/jpeg.c
   trunk/apps/plugins/lamp.c
   trunk/apps/plugins/logo.c
   trunk/apps/plugins/matrix.c
   trunk/apps/plugins/midi/midiplay.c
   trunk/apps/plugins/mosaique.c
   trunk/apps/plugins/mp3_encoder.c
   trunk/apps/plugins/mpegplayer/mpeg_settings.c
   trunk/apps/plugins/mpegplayer/mpegplayer.c
   trunk/apps/plugins/pacbox/pacbox.h
   trunk/apps/plugins/plasma.c
   trunk/apps/plugins/pong.c
   trunk/apps/plugins/reversi/reversi-gui.h
   trunk/apps/plugins/rockblox.c
(Continue reading)


Gmane